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