@Environment(value=CLIENT) public static enum ParrotEntityModel.Pose extends Enum<ParrotEntityModel.Pose>
Enum Constant and Description |
---|
FLYING |
ON_SHOULDER |
PARTY |
SITTING |
STANDING |
Modifier and Type | Method and Description |
---|---|
static ParrotEntityModel.Pose |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParrotEntityModel.Pose[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParrotEntityModel.Pose FLYING
public static final ParrotEntityModel.Pose STANDING
public static final ParrotEntityModel.Pose SITTING
public static final ParrotEntityModel.Pose PARTY
public static final ParrotEntityModel.Pose ON_SHOULDER
public static ParrotEntityModel.Pose[] values()
for (ParrotEntityModel.Pose c : ParrotEntityModel.Pose.values()) System.out.println(c);
public static ParrotEntityModel.Pose 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 null