public static enum GroupConstraint.Flag extends Enum<GroupConstraint.Flag>
GroupConstraint.PairCheck
)Enum Constant and Description |
---|
BACK_TO_BACK
Back-to-back constraint (sequence check)
|
CAN_SHARE_ROOM
Can share room flag
|
CH_NOTOVERLAP
Children cannot overlap
|
IGNORE_STUDENTS
Ignore student conflicts
|
MAX_HRS_DAY
Maximum hours a day (number of slots a day check)
|
Modifier and Type | Method and Description |
---|---|
static GroupConstraint.Flag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GroupConstraint.Flag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupConstraint.Flag BACK_TO_BACK
public static final GroupConstraint.Flag CAN_SHARE_ROOM
public static final GroupConstraint.Flag MAX_HRS_DAY
public static final GroupConstraint.Flag CH_NOTOVERLAP
public static final GroupConstraint.Flag IGNORE_STUDENTS
public static GroupConstraint.Flag[] values()
for (GroupConstraint.Flag c : GroupConstraint.Flag.values()) System.out.println(c);
public static GroupConstraint.Flag 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