Package com.google.maps
Enum StaticMapsRequest.StaticMapType
- java.lang.Object
-
- java.lang.Enum<StaticMapsRequest.StaticMapType>
-
- com.google.maps.StaticMapsRequest.StaticMapType
-
- All Implemented Interfaces:
com.google.maps.internal.StringJoin.UrlValue
,java.io.Serializable
,java.lang.Comparable<StaticMapsRequest.StaticMapType>
- Enclosing class:
- StaticMapsRequest
public static enum StaticMapsRequest.StaticMapType extends java.lang.Enum<StaticMapsRequest.StaticMapType> implements com.google.maps.internal.StringJoin.UrlValue
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toUrlValue()
static StaticMapsRequest.StaticMapType
valueOf​(java.lang.String name)
Returns the enum constant of this type with the specified name.static StaticMapsRequest.StaticMapType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
roadmap
public static final StaticMapsRequest.StaticMapType roadmap
-
satellite
public static final StaticMapsRequest.StaticMapType satellite
-
terrain
public static final StaticMapsRequest.StaticMapType terrain
-
hybrid
public static final StaticMapsRequest.StaticMapType hybrid
-
-
Method Detail
-
values
public static StaticMapsRequest.StaticMapType[] 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 (StaticMapsRequest.StaticMapType c : StaticMapsRequest.StaticMapType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StaticMapsRequest.StaticMapType 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
-
toUrlValue
public java.lang.String toUrlValue()
- Specified by:
toUrlValue
in interfacecom.google.maps.internal.StringJoin.UrlValue
-
-