public enum BlockFaceShape extends java.lang.Enum<BlockFaceShape>
| Enum Constant and Description | 
|---|
BOWL  | 
CENTER  | 
CENTER_BIG  | 
CENTER_SMALL  | 
MIDDLE_POLE  | 
MIDDLE_POLE_THICK  | 
MIDDLE_POLE_THIN  | 
SOLID  | 
UNDEFINED  | 
| Modifier and Type | Method and Description | 
|---|---|
static BlockFaceShape | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static BlockFaceShape[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final BlockFaceShape SOLID
public static final BlockFaceShape BOWL
public static final BlockFaceShape CENTER_SMALL
public static final BlockFaceShape MIDDLE_POLE_THIN
public static final BlockFaceShape CENTER
public static final BlockFaceShape MIDDLE_POLE
public static final BlockFaceShape CENTER_BIG
public static final BlockFaceShape MIDDLE_POLE_THICK
public static final BlockFaceShape UNDEFINED
public static BlockFaceShape[] values()
for (BlockFaceShape c : BlockFaceShape.values()) System.out.println(c);
public static BlockFaceShape 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