public static enum LM_World.Direction extends java.lang.Enum<LM_World.Direction>
| Enum Constant and Description |
|---|
DIR_E
The dir e.
|
DIR_N
The dir n.
|
DIR_NE
The dir ne.
|
DIR_NW
The dir nw.
|
DIR_S
The dir s.
|
DIR_SE
The dir se.
|
DIR_SW
The dir sw.
|
DIR_W
The dir w.
|
| Modifier and Type | Method and Description |
|---|---|
static LM_World.Direction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LM_World.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LM_World.Direction DIR_N
public static final LM_World.Direction DIR_NW
public static final LM_World.Direction DIR_W
public static final LM_World.Direction DIR_SW
public static final LM_World.Direction DIR_S
public static final LM_World.Direction DIR_SE
public static final LM_World.Direction DIR_E
public static final LM_World.Direction DIR_NE
public static LM_World.Direction[] values()
for (LM_World.Direction c : LM_World.Direction.values()) System.out.println(c);
public static LM_World.Direction 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