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