Package org.bukkit.inventory.view
Interface AnvilView
- All Superinterfaces:
InventoryView
An instance of
InventoryView
which provides extra methods related to
anvil view data.-
Nested Class Summary
Nested classes/interfaces inherited from interface org.bukkit.inventory.InventoryView
InventoryView.Property
-
Field Summary
Fields inherited from interface org.bukkit.inventory.InventoryView
OUTSIDE
-
Method Summary
Modifier and TypeMethodDescriptionvoid
bypassEnchantmentLevelRestriction
(boolean bypassEnchantmentLevelRestriction) Sets if enchantments applied via this anvil view may bypass vanilla's level restrictions.boolean
Returns whether this view will bypass the vanilla enchantment level restriction when applying enchantments to an item or not.int
Gets the maximum repair cost needed to repair.Gets the rename text specified within the anvil's text field.int
Gets the experience cost needed to repair.int
Gets the amount of items needed to repair.Get the upper inventory involved in this transaction.void
setMaximumRepairCost
(int levels) Sets maximum repair cost in experience.void
setRepairCost
(int cost) Sets the repair cost in experience.void
setRepairItemCountCost
(int amount) Sets the amount of repair materials required to repair the item.Methods inherited from interface org.bukkit.inventory.InventoryView
close, convertSlot, countSlots, getBottomInventory, getCursor, getInventory, getItem, getOriginalTitle, getPlayer, getSlotType, getTitle, getType, setCursor, setItem, setProperty, setTitle, title
-
Method Details
-
getTopInventory
Description copied from interface:InventoryView
Get the upper inventory involved in this transaction.- Specified by:
getTopInventory
in interfaceInventoryView
- Returns:
- the inventory
-
getRenameText
Gets the rename text specified within the anvil's text field.- Returns:
- The text within the anvil's text field if an item is present otherwise null
-
getRepairItemCountCost
int getRepairItemCountCost()Gets the amount of items needed to repair.- Returns:
- The amount of materials required to repair the item
-
getRepairCost
int getRepairCost()Gets the experience cost needed to repair.- Returns:
- The repair cost in experience
-
getMaximumRepairCost
int getMaximumRepairCost()Gets the maximum repair cost needed to repair.- Returns:
- The maximum repair cost in experience
-
setRepairItemCountCost
void setRepairItemCountCost(int amount) Sets the amount of repair materials required to repair the item.- Parameters:
amount
- the amount of repair materials
-
setRepairCost
void setRepairCost(int cost) Sets the repair cost in experience.- Parameters:
cost
- the experience cost to repair
-
setMaximumRepairCost
void setMaximumRepairCost(int levels) Sets maximum repair cost in experience.- Parameters:
levels
- the levels to set
-
bypassesEnchantmentLevelRestriction
boolean bypassesEnchantmentLevelRestriction()Returns whether this view will bypass the vanilla enchantment level restriction when applying enchantments to an item or not.By default, vanilla will limit enchantments applied to items to the respective
Enchantment.getMaxLevel()
, even if the applied enchantment itself is above said limit. Disabling this limit viabypassEnchantmentLevelRestriction(boolean)
allows for, e.g., enchanted books to be applied fully, even if their enchantments are beyond the limit.- Returns:
true
if this view bypasses the vanilla restrictions.
-
bypassEnchantmentLevelRestriction
void bypassEnchantmentLevelRestriction(boolean bypassEnchantmentLevelRestriction) Sets if enchantments applied via this anvil view may bypass vanilla's level restrictions.- Parameters:
bypassEnchantmentLevelRestriction
- if this view bypasses the vanilla level restrictions.- See Also:
-