public static enum InventoryType.SlotType extends Enum<InventoryType.SlotType>
| Enum Constant and Description | 
|---|
| ARMORAn armour slot in the player's inventory. | 
| CONTAINERA regular slot in the container or the player's inventory; anything
 not covered by the other enum values. | 
| CRAFTINGA slot in the crafting matrix, or the input slot in a furnace
 inventory, the potion slot in the brewing stand, or the enchanting
 slot. | 
| FUELThe fuel slot in a furnace inventory, or the ingredient slot in a
 brewing stand inventory. | 
| OUTSIDEA pseudo-slot representing the area outside the inventory window. | 
| QUICKBARA slot in the bottom row or quickbar. | 
| RESULTA 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 © 2015. All rights reserved.