public static enum ItemTransform.Type extends java.lang.Enum<ItemTransform.Type>
| Enum Constant and Description |
|---|
FIRSTPERSON_LEFTHAND |
FIRSTPERSON_RIGHTHAND |
FIXED |
GROUND |
GUI |
HEAD |
THIRDPERSON_LEFTHAND |
THIRDPERSON_RIGHTHAND |
| Modifier and Type | Method and Description |
|---|---|
static ItemTransform.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ItemTransform.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ItemTransform.Type THIRDPERSON_RIGHTHAND
public static final ItemTransform.Type THIRDPERSON_LEFTHAND
public static final ItemTransform.Type FIRSTPERSON_RIGHTHAND
public static final ItemTransform.Type FIRSTPERSON_LEFTHAND
public static final ItemTransform.Type GUI
public static final ItemTransform.Type HEAD
public static final ItemTransform.Type GROUND
public static final ItemTransform.Type FIXED
public static ItemTransform.Type[] values()
for (ItemTransform.Type c : ItemTransform.Type.values()) System.out.println(c);
public static ItemTransform.Type 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