Package org.bukkit.enchantments
Class EnchantmentWrapper
java.lang.Object
org.bukkit.enchantments.Enchantment
org.bukkit.enchantments.EnchantmentWrapper
- All Implemented Interfaces:
- Keyed
A simple wrapper for ease of selecting 
Enchantments- 
Field SummaryFields inherited from class org.bukkit.enchantments.EnchantmentARROW_DAMAGE, ARROW_FIRE, ARROW_INFINITE, ARROW_KNOCKBACK, BINDING_CURSE, CHANNELING, DAMAGE_ALL, DAMAGE_ARTHROPODS, DAMAGE_UNDEAD, DEPTH_STRIDER, DIG_SPEED, DURABILITY, FIRE_ASPECT, FROST_WALKER, IMPALING, KNOCKBACK, LOOT_BONUS_BLOCKS, LOOT_BONUS_MOBS, LOYALTY, LUCK, LURE, MENDING, MULTISHOT, OXYGEN, PIERCING, PROTECTION_ENVIRONMENTAL, PROTECTION_EXPLOSIONS, PROTECTION_FALL, PROTECTION_FIRE, PROTECTION_PROJECTILE, QUICK_CHARGE, RIPTIDE, SILK_TOUCH, SOUL_SPEED, SWEEPING_EDGE, THORNS, VANISHING_CURSE, WATER_WORKER
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionbooleancanEnchantItem(ItemStack item) Checks if this Enchantment may be applied to the givenItemStack.booleanconflictsWith(Enchantment other) Check if this enchantment conflicts with another enchantment.Gets the enchantment bound to this wrapperGets the type ofItemStackthat may fit this Enchantment.intGets the maximum level that this Enchantment may become.getName()Gets the unique name of this enchantmentintGets the level that this Enchantment should start atbooleanisCursed()Checks if this enchantment is a cursed enchantment
 Cursed enchantments are found the same way treasure enchantments arebooleanChecks if this enchantment is a treasure enchantment.Methods inherited from class org.bukkit.enchantments.Enchantmentequals, getByKey, getByName, getKey, hashCode, isAcceptingRegistrations, registerEnchantment, stopAcceptingRegistrations, toString, values
- 
Constructor Details- 
EnchantmentWrapper
 
- 
- 
Method Details- 
getEnchantmentGets the enchantment bound to this wrapper- Returns:
- Enchantment
 
- 
getMaxLevelpublic int getMaxLevel()Description copied from class:EnchantmentGets the maximum level that this Enchantment may become.- Specified by:
- getMaxLevelin class- Enchantment
- Returns:
- Maximum level of the Enchantment
 
- 
getStartLevelpublic int getStartLevel()Description copied from class:EnchantmentGets the level that this Enchantment should start at- Specified by:
- getStartLevelin class- Enchantment
- Returns:
- Starting level of the Enchantment
 
- 
getItemTargetDescription copied from class:EnchantmentGets the type ofItemStackthat may fit this Enchantment.- Specified by:
- getItemTargetin class- Enchantment
- Returns:
- Target type of the Enchantment
 
- 
canEnchantItemDescription copied from class:EnchantmentChecks if this Enchantment may be applied to the givenItemStack.This does not check if it conflicts with any enchantments already applied to the item. - Specified by:
- canEnchantItemin class- Enchantment
- Parameters:
- item- Item to test
- Returns:
- True if the enchantment may be applied, otherwise False
 
- 
getNameDescription copied from class:EnchantmentGets the unique name of this enchantment- Specified by:
- getNamein class- Enchantment
- Returns:
- Unique name
 
- 
isTreasurepublic boolean isTreasure()Description copied from class:EnchantmentChecks if this enchantment is a treasure enchantment.
 Treasure enchantments can only be received via looting, trading, or fishing.- Specified by:
- isTreasurein class- Enchantment
- Returns:
- true if the enchantment is a treasure enchantment
 
- 
isCursedpublic boolean isCursed()Description copied from class:EnchantmentChecks if this enchantment is a cursed enchantment
 Cursed enchantments are found the same way treasure enchantments are- Specified by:
- isCursedin class- Enchantment
- Returns:
- true if the enchantment is cursed
 
- 
conflictsWithDescription copied from class:EnchantmentCheck if this enchantment conflicts with another enchantment.- Specified by:
- conflictsWithin class- Enchantment
- Parameters:
- other- The enchantment to check against
- Returns:
- True if there is a conflict.
 
 
-