public static enum Constants.GeneralizedModeOfTransportType extends Enum<Constants.GeneralizedModeOfTransportType>
| Enum Constant and Description |
|---|
BICYCLE
riding a bicycle, e-bike, or other vehicles classified as bicycles
(e.g.
|
CAR
double-tracked motorized transport (that is not public transport),
e.g.
|
FOOT
walking
|
MOTORCYCLE
single-tracked motorized transport, e.g.
|
PUBLIC_TRANSPORT
all forms of public transport such as busses, trams, trains,..
|
| Modifier and Type | Method and Description |
|---|---|
static Constants.GeneralizedModeOfTransportType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constants.GeneralizedModeOfTransportType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.GeneralizedModeOfTransportType FOOT
public static final Constants.GeneralizedModeOfTransportType BICYCLE
public static final Constants.GeneralizedModeOfTransportType MOTORCYCLE
public static final Constants.GeneralizedModeOfTransportType CAR
public static final Constants.GeneralizedModeOfTransportType PUBLIC_TRANSPORT
public static Constants.GeneralizedModeOfTransportType[] values()
for (Constants.GeneralizedModeOfTransportType c : Constants.GeneralizedModeOfTransportType.values()) System.out.println(c);
public static Constants.GeneralizedModeOfTransportType 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 nullCopyright © 2018. All rights reserved.