public static enum PlayerInventoryAddEvent.Origin extends java.lang.Enum<PlayerInventoryAddEvent.Origin>
Enum Constant and Description |
---|
Bag
Opened a bag which contained this item
|
Clothing
Player takes of his clothing, so the clothing item returns to his inventory
|
Corpse
Player got the item from a dead body (player or npc)
|
Craft
The item crafted by the player
|
Deconstruct
Player received the item by deconstructing blocks, objects or construction elements
|
Dig
Player received the item by digging (e.g. ores, stone etc.)
|
Fishing
Player obtained this item from fishing
|
Harvest
Player received the item by harvesting plants, cutting grass etc.
|
Pickup
Regular item pickup, i.e. item was on the ground, and the player simply picked it up
|
Spawn
The item was spawned via command or API
|
Trade
Player received the item by trading with another player
|
Modifier and Type | Method and Description |
---|---|
static PlayerInventoryAddEvent.Origin |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PlayerInventoryAddEvent.Origin[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlayerInventoryAddEvent.Origin Pickup
public static final PlayerInventoryAddEvent.Origin Spawn
public static final PlayerInventoryAddEvent.Origin Craft
public static final PlayerInventoryAddEvent.Origin Dig
public static final PlayerInventoryAddEvent.Origin Deconstruct
public static final PlayerInventoryAddEvent.Origin Harvest
public static final PlayerInventoryAddEvent.Origin Fishing
public static final PlayerInventoryAddEvent.Origin Trade
public static final PlayerInventoryAddEvent.Origin Corpse
public static final PlayerInventoryAddEvent.Origin Clothing
public static final PlayerInventoryAddEvent.Origin Bag
public static PlayerInventoryAddEvent.Origin[] values()
for (PlayerInventoryAddEvent.Origin c : PlayerInventoryAddEvent.Origin.values()) System.out.println(c);
public static PlayerInventoryAddEvent.Origin 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