| Enum Constant and Description |
|---|
AERIAL
Aerial imagery.
|
AERIALWITHLABELS
Aerial imagery with a road overlay.
|
ROAD
Roads without additional imagery.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getId()
Gets Map Id
|
java.lang.String |
getLabel()
Gets Map label
|
java.lang.String |
toString()
Gets Map translated label
|
static MapTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MapTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapTypes AERIAL
public static final MapTypes AERIALWITHLABELS
public static final MapTypes ROAD
public static MapTypes[] values()
for (MapTypes c : MapTypes.values()) System.out.println(c);
public static MapTypes 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 getId()
public java.lang.String getLabel()
public java.lang.String toString()
toString in class java.lang.Enum<MapTypes>