public enum SeatSelectionMode extends Enum<SeatSelectionMode>
Java class for seatSelectionMode.
The following schema fragment specifies the expected content contained within this class.
Enum Constant and Description |
---|
AUTO |
MANUAL |
MANUAL_OR_AUTO |
WITHOUT_MAP |
WITHOUT_SEATING |
Modifier and Type | Method and Description |
---|---|
static SeatSelectionMode |
fromValue(String v) |
String |
value() |
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 nullpublic String value()
public static SeatSelectionMode fromValue(String v)
Copyright © 2021. All rights reserved.