public static enum MapWidget.BaseMap extends java.lang.Enum<MapWidget.BaseMap>
Enum Constant and Description |
---|
GRAY |
HYBRID |
NATIONAL_GEOGRAPHIC |
NOT_SET |
OCEAN |
OSM |
SATELLITE |
TOPO |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static MapWidget.BaseMap |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MapWidget.BaseMap[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapWidget.BaseMap NOT_SET
public static final MapWidget.BaseMap SATELLITE
public static final MapWidget.BaseMap HYBRID
public static final MapWidget.BaseMap TOPO
public static final MapWidget.BaseMap GRAY
public static final MapWidget.BaseMap OCEAN
public static final MapWidget.BaseMap OSM
public static final MapWidget.BaseMap NATIONAL_GEOGRAPHIC
public static MapWidget.BaseMap[] values()
for (MapWidget.BaseMap c : MapWidget.BaseMap.values()) System.out.println(c);
public static MapWidget.BaseMap 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 getValue()