Direction
@Deprecated public enum VectorFace extends java.lang.Enum<VectorFace>
Enum Constant and Description |
---|
ABOVE_EAST
Deprecated.
|
ABOVE_NORTH
Deprecated.
|
ABOVE_SOUTH
Deprecated.
|
ABOVE_WEST
Deprecated.
|
BELOW_EAST
Deprecated.
|
BELOW_NORTH
Deprecated.
|
BELOW_SOUTH
Deprecated.
|
BELOW_WEST
Deprecated.
|
DOWN
Deprecated.
|
EAST
Deprecated.
|
NORTH
Deprecated.
|
NORTH_EAST
Deprecated.
|
NORTH_WEST
Deprecated.
|
SELF
Deprecated.
|
SOUTH
Deprecated.
|
SOUTH_EAST
Deprecated.
|
SOUTH_WEST
Deprecated.
|
UP
Deprecated.
|
WEST
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static VectorFace |
fromMods(int modX2,
int modY2,
int modZ2)
Deprecated.
|
int |
getModX()
Deprecated.
|
int |
getModY()
Deprecated.
|
int |
getModZ()
Deprecated.
|
static VectorFace |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static VectorFace[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VectorFace NORTH
public static final VectorFace EAST
public static final VectorFace SOUTH
public static final VectorFace WEST
public static final VectorFace UP
public static final VectorFace DOWN
public static final VectorFace NORTH_EAST
public static final VectorFace NORTH_WEST
public static final VectorFace SOUTH_EAST
public static final VectorFace SOUTH_WEST
public static final VectorFace ABOVE_NORTH
public static final VectorFace BELOW_NORTH
public static final VectorFace ABOVE_SOUTH
public static final VectorFace BELOW_SOUTH
public static final VectorFace ABOVE_WEST
public static final VectorFace BELOW_WEST
public static final VectorFace ABOVE_EAST
public static final VectorFace BELOW_EAST
public static final VectorFace SELF
public static VectorFace[] values()
for (VectorFace c : VectorFace.values()) System.out.println(c);
public static VectorFace 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 int getModX()
public int getModZ()
public int getModY()
public static VectorFace fromMods(int modX2, int modY2, int modZ2)