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