public enum ConstraintGroup extends Enum<ConstraintGroup>
Enum Constant and Description |
---|
BOARD |
EARLY |
IN_CONTEXT |
LATE |
NORMAL |
Modifier and Type | Method and Description |
---|---|
static ConstraintGroup |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConstraintGroup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConstraintGroup EARLY
public static final ConstraintGroup IN_CONTEXT
public static final ConstraintGroup NORMAL
public static final ConstraintGroup LATE
public static final ConstraintGroup BOARD
public static ConstraintGroup[] values()
for (ConstraintGroup c : ConstraintGroup.values()) System.out.println(c);
public static ConstraintGroup 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