public enum SeatSelectionModeEnum extends Enum<SeatSelectionModeEnum>
Enum Constant and Description |
---|
AUTO |
MANUAL |
MANUAL_OR_AUTO |
WITHOUT_MAP |
WITHOUT_SEATING |
Modifier and Type | Method and Description |
---|---|
static SeatSelectionModeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SeatSelectionModeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SeatSelectionModeEnum AUTO
public static final SeatSelectionModeEnum MANUAL
public static final SeatSelectionModeEnum MANUAL_OR_AUTO
public static final SeatSelectionModeEnum WITHOUT_MAP
public static final SeatSelectionModeEnum WITHOUT_SEATING
public static SeatSelectionModeEnum[] values()
for (SeatSelectionModeEnum c : SeatSelectionModeEnum.values()) System.out.println(c);
public static SeatSelectionModeEnum 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 © 2021. All rights reserved.