com.google.maps.internal.StringJoin.UrlValue, java.io.Serializable, java.lang.Comparable<TravelMode>public enum TravelMode extends java.lang.Enum<TravelMode> implements com.google.maps.internal.StringJoin.UrlValue
| Enum Constant | Description | 
|---|---|
BICYCLING | 
|
DRIVING | 
|
TRANSIT | 
|
UNKNOWN | 
 Indicates an unknown travel mode returned by the server. 
 | 
WALKING | 
| Modifier and Type | Method | Description | 
|---|---|---|
java.lang.String | 
toString() | 
|
java.lang.String | 
toUrlValue() | 
|
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 final TravelMode UNKNOWN
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 java.lang.String toUrlValue()
toUrlValue in interface com.google.maps.internal.StringJoin.UrlValue