public static enum BipedModel.ArmPose extends java.lang.Enum<BipedModel.ArmPose>
Enum Constant and Description |
---|
BLOCK |
BOW_AND_ARROW |
CROSSBOW_CHARGE |
CROSSBOW_HOLD |
EMPTY |
ITEM |
THROW_SPEAR |
Modifier and Type | Method and Description |
---|---|
static BipedModel.ArmPose |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BipedModel.ArmPose[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BipedModel.ArmPose EMPTY
public static final BipedModel.ArmPose ITEM
public static final BipedModel.ArmPose BLOCK
public static final BipedModel.ArmPose BOW_AND_ARROW
public static final BipedModel.ArmPose THROW_SPEAR
public static final BipedModel.ArmPose CROSSBOW_CHARGE
public static final BipedModel.ArmPose CROSSBOW_HOLD
public static BipedModel.ArmPose[] values()
for (BipedModel.ArmPose c : BipedModel.ArmPose.values()) System.out.println(c);
public static BipedModel.ArmPose 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