public static enum MapView.RasterMode extends Enum<MapView.RasterMode>
| Enum Constant and Description |
|---|
NONE |
RASTER_ROAD |
SATELLITE |
TERRAIN_RASTER_ROAD |
TERRAIN_SATELLITE |
| Modifier and Type | Method and Description |
|---|---|
static MapView.RasterMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MapView.RasterMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapView.RasterMode NONE
public static final MapView.RasterMode RASTER_ROAD
public static final MapView.RasterMode SATELLITE
public static final MapView.RasterMode TERRAIN_RASTER_ROAD
public static final MapView.RasterMode TERRAIN_SATELLITE
public static MapView.RasterMode[] values()
for (MapView.RasterMode c : MapView.RasterMode.values()) System.out.println(c);
public static MapView.RasterMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is null