Package org.bukkit.inventory
Enum InventoryView.Property
- All Implemented Interfaces:
Serializable
,Comparable<InventoryView.Property>
,Constable
- Enclosing class:
- InventoryView
public static enum InventoryView.Property extends Enum<InventoryView.Property>
Represents various extra properties of certain inventory windows.
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description BOOK_PAGE
The lectern's current open book pageBREW_TIME
The progress of the down-pointing arrow in a brewing inventory.BURN_TIME
The progress of the flame in a furnace inventory.COOK_TIME
The progress of the right-pointing arrow in a furnace inventory.ENCHANT_BUTTON1
In an enchanting inventory, the top button's experience level value.ENCHANT_BUTTON2
In an enchanting inventory, the middle button's experience level value.ENCHANT_BUTTON3
In an enchanting inventory, the bottom button's experience level value.ENCHANT_ID1
In an enchanting inventory, the top button's enchantment's idENCHANT_ID2
In an enchanting inventory, the middle button's enchantment's idENCHANT_ID3
In an enchanting inventory, the bottom button's enchantment's idENCHANT_LEVEL1
In an enchanting inventory, the top button's level value.ENCHANT_LEVEL2
In an enchanting inventory, the middle button's level value.ENCHANT_LEVEL3
In an enchanting inventory, the bottom button's level value.ENCHANT_XP_SEED
In an enchanting inventory, the first four bits of the player's xpSeed.FUEL_TIME
The progress of the fuel slot in a brewing inventory.LEVELS
In an beacon inventory, the levels of the beaconPRIMARY_EFFECT
In an beacon inventory, the primary potion effectREPAIR_COST
The repair's cost in xp levelsSECONDARY_EFFECT
In an beacon inventory, the secondary potion effectTICKS_FOR_CURRENT_FUEL
How many total ticks the current fuel should last.TICKS_FOR_CURRENT_SMELTING
How many total ticks the current smelting should last. -
Method Summary
Modifier and Type Method Description int
getId()
Deprecated.Magic valueInventoryType
getType()
static InventoryView.Property
valueOf(String name)
Returns the enum constant of this type with the specified name.static InventoryView.Property[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
BREW_TIME
The progress of the down-pointing arrow in a brewing inventory. -
FUEL_TIME
The progress of the fuel slot in a brewing inventory. This is a value between 0 and 20, with 0 making the bar empty, and 20 making the bar full. -
BURN_TIME
The progress of the flame in a furnace inventory. -
TICKS_FOR_CURRENT_FUEL
How many total ticks the current fuel should last. -
COOK_TIME
The progress of the right-pointing arrow in a furnace inventory. -
TICKS_FOR_CURRENT_SMELTING
How many total ticks the current smelting should last. -
ENCHANT_BUTTON1
In an enchanting inventory, the top button's experience level value. -
ENCHANT_BUTTON2
In an enchanting inventory, the middle button's experience level value. -
ENCHANT_BUTTON3
In an enchanting inventory, the bottom button's experience level value. -
ENCHANT_XP_SEED
In an enchanting inventory, the first four bits of the player's xpSeed. -
ENCHANT_ID1
In an enchanting inventory, the top button's enchantment's id -
ENCHANT_ID2
In an enchanting inventory, the middle button's enchantment's id -
ENCHANT_ID3
In an enchanting inventory, the bottom button's enchantment's id -
ENCHANT_LEVEL1
In an enchanting inventory, the top button's level value. -
ENCHANT_LEVEL2
In an enchanting inventory, the middle button's level value. -
ENCHANT_LEVEL3
In an enchanting inventory, the bottom button's level value. -
LEVELS
In an beacon inventory, the levels of the beacon -
PRIMARY_EFFECT
In an beacon inventory, the primary potion effect -
SECONDARY_EFFECT
In an beacon inventory, the secondary potion effect -
REPAIR_COST
The repair's cost in xp levels -
BOOK_PAGE
The lectern's current open book page
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getType
-
getId
Deprecated.Magic valueGets the id of this view.- Returns:
- the id of this view
-