Package com.google.maps.model
Enum TransitMode
- java.lang.Object
-
- java.lang.Enum<TransitMode>
-
- com.google.maps.model.TransitMode
-
- All Implemented Interfaces:
com.google.maps.internal.StringJoin.UrlValue
,java.io.Serializable
,java.lang.Comparable<TransitMode>
public enum TransitMode extends java.lang.Enum<TransitMode> implements com.google.maps.internal.StringJoin.UrlValue
You may specify transit mode when requesting transit directions or distances.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
java.lang.String
toUrlValue()
static TransitMode
valueOf​(java.lang.String name)
Returns the enum constant of this type with the specified name.static TransitMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BUS
public static final TransitMode BUS
-
SUBWAY
public static final TransitMode SUBWAY
-
TRAIN
public static final TransitMode TRAIN
-
TRAM
public static final TransitMode TRAM
-
RAIL
public static final TransitMode RAIL
Indicates preferred travel by train, tram, light rail and subway.
-
-
Method Detail
-
values
public static TransitMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TransitMode c : TransitMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TransitMode valueOf​(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<TransitMode>
-
toUrlValue
public java.lang.String toUrlValue()
- Specified by:
toUrlValue
in interfacecom.google.maps.internal.StringJoin.UrlValue
-
-