public enum BlockFace extends Enum<BlockFace>
| Enum Constant and Description |
|---|
DOWN |
EAST |
NORTH |
SOUTH |
SPECIAL |
UP |
WEST |
| Modifier and Type | Method and Description |
|---|---|
static BlockFace |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BlockFace[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockFace DOWN
public static final BlockFace UP
public static final BlockFace NORTH
public static final BlockFace SOUTH
public static final BlockFace WEST
public static final BlockFace EAST
public static final BlockFace SPECIAL
public static BlockFace[] values()
for (BlockFace c : BlockFace.values()) System.out.println(c);
public static BlockFace valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.