public enum MapModeType extends java.lang.Enum<MapModeType>
Enum Constant and Description |
---|
MODE_2D
2D Mode.
|
MODE_3D
2.5D Mode (imitates 3D mode).
|
Modifier and Type | Method and Description |
---|---|
static MapModeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MapModeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapModeType MODE_2D
public static final MapModeType MODE_3D
public static MapModeType[] values()
for (MapModeType c : MapModeType.values()) System.out.println(c);
public static MapModeType 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