public static enum MapController.CameraType extends java.lang.Enum<MapController.CameraType>
Enum Constant and Description |
---|
FLAT |
ISOMETRIC |
PERSPECTIVE |
Modifier and Type | Method and Description |
---|---|
static MapController.CameraType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MapController.CameraType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapController.CameraType PERSPECTIVE
public static final MapController.CameraType ISOMETRIC
public static final MapController.CameraType FLAT
public static MapController.CameraType[] values()
for (MapController.CameraType c : MapController.CameraType.values()) System.out.println(c);
public static MapController.CameraType 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 null