public enum FlightDestinationType extends java.lang.Enum<FlightDestinationType>
| Enum Constant and Description |
|---|
DOMESTIC |
INTERNATIONAL |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
code() |
java.lang.String |
description() |
static FlightDestinationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FlightDestinationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlightDestinationType DOMESTIC
public static final FlightDestinationType INTERNATIONAL
public static FlightDestinationType[] values()
for (FlightDestinationType c : FlightDestinationType.values()) System.out.println(c);
public static FlightDestinationType 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 nullpublic java.lang.String code()
public java.lang.String description()