public static enum ItemBuilderAPI.ItemType extends java.lang.Enum<ItemBuilderAPI.ItemType>
| Enum Constant and Description |
|---|
BASIC |
BLOCK |
BOW |
DISC |
FISHING_ROD |
TOOL |
| Modifier and Type | Method and Description |
|---|---|
static ItemBuilderAPI.ItemType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ItemBuilderAPI.ItemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ItemBuilderAPI.ItemType BASIC
public static final ItemBuilderAPI.ItemType BLOCK
public static final ItemBuilderAPI.ItemType BOW
public static final ItemBuilderAPI.ItemType DISC
public static final ItemBuilderAPI.ItemType FISHING_ROD
public static final ItemBuilderAPI.ItemType TOOL
public static ItemBuilderAPI.ItemType[] values()
for (ItemBuilderAPI.ItemType c : ItemBuilderAPI.ItemType.values()) System.out.println(c);
public static ItemBuilderAPI.ItemType 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