public enum TravelMode extends java.lang.Enum<TravelMode> implements com.google.maps.internal.StringJoin.UrlValue
Enum Constant and Description |
---|
BICYCLING |
DRIVING |
TRANSIT |
WALKING |
Modifier and Type | Method and Description |
---|---|
static TravelMode |
lookup(java.lang.String travelMode) |
java.lang.String |
toString() |
static TravelMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TravelMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TravelMode DRIVING
public static final TravelMode WALKING
public static final TravelMode BICYCLING
public static final TravelMode TRANSIT
public static TravelMode[] values()
for (TravelMode c : TravelMode.values()) System.out.println(c);
public static TravelMode 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 toString()
toString
in class java.lang.Enum<TravelMode>
public static TravelMode lookup(java.lang.String travelMode)