public static enum Player.CraftingType extends Enum<Player.CraftingType>
| Modifier and Type | Method and Description |
|---|---|
static Player.CraftingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Player.CraftingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Player.CraftingType SMALL
public static final Player.CraftingType BIG
public static final Player.CraftingType ANVIL
public static final Player.CraftingType ENCHANT
public static final Player.CraftingType BEACON
public static Player.CraftingType[] values()
for (Player.CraftingType c : Player.CraftingType.values()) System.out.println(c);
public static Player.CraftingType 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 nullCopyright © 2020. All rights reserved.