public enum GroundTransportType extends java.lang.Enum<GroundTransportType> implements LineItemTypeDescription
| Enum Constant and Description |
|---|
BUS |
CAR_POOLING |
CAR_RENTAL |
DEFAULT |
PRIVATE_CAR_RENTAL |
RIDE_SHARING |
TAXI |
TRAIN |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
code() |
java.lang.String |
description() |
static GroundTransportType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GroundTransportType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroundTransportType DEFAULT
public static final GroundTransportType TAXI
public static final GroundTransportType TRAIN
public static final GroundTransportType BUS
public static final GroundTransportType RIDE_SHARING
public static final GroundTransportType CAR_POOLING
public static final GroundTransportType CAR_RENTAL
public static final GroundTransportType PRIVATE_CAR_RENTAL
public static GroundTransportType[] values()
for (GroundTransportType c : GroundTransportType.values()) System.out.println(c);
public static GroundTransportType 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