public enum FlightType extends java.lang.Enum<FlightType> implements LineItemTypeDescription
| Enum Constant and Description |
|---|
Commercial |
Private |
Standard |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
code() |
java.lang.String |
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 Standard
public static final FlightType Commercial
public static final FlightType Private
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 nullpublic java.lang.String code()
code in interface LineItemTypeDescriptionpublic java.lang.String description()
description in interface LineItemTypeDescription