public static enum MapView.RenderMode extends Enum<MapView.RenderMode>
| Enum Constant and Description |
|---|
HEAD_UP_2D
2D mode and head up
|
HEAD_UP_3D
3D mode and head up
|
NORTH_UP_2D
2D mode and north up
|
NORTH_UP_3D
3D mode and north up
|
| Modifier and Type | Method and Description |
|---|---|
static MapView.RenderMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MapView.RenderMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapView.RenderMode NORTH_UP_3D
public static final MapView.RenderMode HEAD_UP_3D
public static final MapView.RenderMode NORTH_UP_2D
public static final MapView.RenderMode HEAD_UP_2D
public static MapView.RenderMode[] values()
for (MapView.RenderMode c : MapView.RenderMode.values()) System.out.println(c);
public static MapView.RenderMode 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