public enum TravelMode extends java.lang.Enum<TravelMode>
DirectionsStep
.Enum Constant and Description |
---|
BICYCLING
Specifies a bicycling directions request.
|
DRIVING
Specifies a driving directions request.
|
TRANSIT
Specifies a transit directions request.
|
WALKING
Specifies a walking directions request.
|
Modifier and Type | Method and Description |
---|---|
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 BICYCLING
public static final TravelMode DRIVING
public static final TravelMode TRANSIT
public static final TravelMode WALKING
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 null