public static enum InventoryType.SlotType extends Enum<InventoryType.SlotType>
Enum Constant and Description |
---|
ARMOR
An armour slot in the player's inventory.
|
CONTAINER
A regular slot in the container or the player's inventory; anything
not covered by the other enum values.
|
CRAFTING
A slot in the crafting matrix, or the input slot in a furnace
inventory, the potion slot in the brewing stand, or the enchanting
slot.
|
FUEL
The fuel slot in a furnace inventory, or the ingredient slot in a
brewing stand inventory.
|
OUTSIDE
A pseudo-slot representing the area outside the inventory window.
|
QUICKBAR
A slot in the bottom row or quickbar.
|
RESULT
A result slot in a furnace or crafting inventory.
|
Modifier and Type | Method and Description |
---|---|
static InventoryType.SlotType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InventoryType.SlotType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InventoryType.SlotType RESULT
public static final InventoryType.SlotType CRAFTING
public static final InventoryType.SlotType ARMOR
public static final InventoryType.SlotType CONTAINER
public static final InventoryType.SlotType QUICKBAR
public static final InventoryType.SlotType OUTSIDE
public static final InventoryType.SlotType FUEL
public static InventoryType.SlotType[] values()
for (InventoryType.SlotType c : InventoryType.SlotType.values()) System.out.println(c);
public static InventoryType.SlotType 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 © 2016. All rights reserved.