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