public static enum ItemTransformEvent.Trigger extends java.lang.Enum<ItemTransformEvent.Trigger>
ItemTransformEvent
was triggered exactly
(i.e. what caused the item to transform).Enum Constant and Description |
---|
Furnace
Item was smelted in a furnace
|
Grinder
Item was crushed by a grinder
|
Modifier and Type | Method and Description |
---|---|
static ItemTransformEvent.Trigger |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ItemTransformEvent.Trigger[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ItemTransformEvent.Trigger Furnace
public static final ItemTransformEvent.Trigger Grinder
public static ItemTransformEvent.Trigger[] values()
for (ItemTransformEvent.Trigger c : ItemTransformEvent.Trigger.values()) System.out.println(c);
public static ItemTransformEvent.Trigger 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