public enum RelationState extends Enum<RelationState>
Enum Constant and Description |
---|
FULFILLED
This value means that the checked relation is fulfilled by the set of known relations
|
UNDETERMINED
This value means that the checked relation is not determined by the set of known relations
|
UNFULFILLED
This value means that the checked relation is not fulfilled by the set of known relations
|
Modifier and Type | Method and Description |
---|---|
boolean |
isDetermined() |
boolean |
rejects(BooleanConstraint constraint) |
static RelationState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RelationState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RelationState FULFILLED
public static final RelationState UNFULFILLED
public static final RelationState UNDETERMINED
public static RelationState[] values()
for (RelationState c : RelationState.values()) System.out.println(c);
public static RelationState valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic boolean rejects(BooleanConstraint constraint)
public boolean isDetermined()
Copyright © 2012–2016 SonarSource. All rights reserved.