public enum SeatingStrategy extends Enum<SeatingStrategy>
Enum Constant and Description |
---|
AA_MANDATORY_PREFERENCES
Auto attribution with given preferences as mandatory.
|
AA_OPTIONAL_PREFERENCES
Auto attribution with optional preferences.
|
MANUAL_SEATING
Manual attribution of seats with given seat definitions.
|
NO_AUTO_ALLOC
No seat attribution
|
Modifier and Type | Method and Description |
---|---|
static SeatingStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SeatingStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SeatingStrategy MANUAL_SEATING
public static final SeatingStrategy AA_MANDATORY_PREFERENCES
public static final SeatingStrategy AA_OPTIONAL_PREFERENCES
public static final SeatingStrategy NO_AUTO_ALLOC
public static SeatingStrategy[] values()
for (SeatingStrategy c : SeatingStrategy.values()) System.out.println(c);
public static SeatingStrategy 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 nullCopyright © 2020. All rights reserved.