public static enum Constraint.Direction extends Enum<Constraint.Direction>
| Enum Constant and Description |
|---|
equal |
greater |
greaterOrEqual |
less |
lessOrEqual |
| Modifier and Type | Method and Description |
|---|---|
static Constraint.Direction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constraint.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constraint.Direction less
public static final Constraint.Direction greater
public static final Constraint.Direction equal
public static final Constraint.Direction lessOrEqual
public static final Constraint.Direction greaterOrEqual
public static Constraint.Direction[] values()
for (Constraint.Direction c : Constraint.Direction.values()) System.out.println(c);
public static Constraint.Direction 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 null