public enum FlightType extends java.lang.Enum<FlightType>
Flight
.Enum Constant and Description |
---|
ARRIVING
An arriving flight.
|
DEPARTING
A departing flight.
|
Modifier and Type | Method and Description |
---|---|
static FlightType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FlightType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlightType DEPARTING
public static final FlightType ARRIVING
public static FlightType[] values()
for (FlightType c : FlightType.values()) System.out.println(c);
public static FlightType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null