public enum TravelModes extends Enum<TravelModes>
| Enum Constant and Description |
|---|
BICYCLING |
DRIVING |
TRANSIT |
WALKING |
| Modifier and Type | Method and Description |
|---|---|
static TravelModes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TravelModes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TravelModes DRIVING
public static final TravelModes BICYCLING
public static final TravelModes TRANSIT
public static final TravelModes WALKING
public static TravelModes[] values()
for (TravelModes c : TravelModes.values()) System.out.println(c);
public static TravelModes 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 © 2016. All Rights Reserved.