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