Package org.bukkit.inventory.meta
Interface CrossbowMeta
- All Superinterfaces:
- Cloneable,- ConfigurationSerializable,- ItemMeta,- PersistentDataHolder
- 
Method SummaryModifier and TypeMethodDescriptionvoidAdds a charged projectile to this item.Returns an immutable list of the projectiles charged on this item.booleanReturns whether the item has any charged projectiles.voidsetChargedProjectiles(List<ItemStack> projectiles) Sets the projectiles charged on this item.Methods inherited from interface org.bukkit.configuration.serialization.ConfigurationSerializableserializeMethods inherited from interface org.bukkit.inventory.meta.ItemMetaaddAttributeModifier, addEnchant, addItemFlags, clone, getAsString, getAttributeModifiers, getAttributeModifiers, getAttributeModifiers, getCustomModelData, getCustomTagContainer, getDisplayName, getEnchantLevel, getEnchants, getItemFlags, getLocalizedName, getLore, hasAttributeModifiers, hasConflictingEnchant, hasCustomModelData, hasDisplayName, hasEnchant, hasEnchants, hasItemFlag, hasLocalizedName, hasLore, isUnbreakable, removeAttributeModifier, removeAttributeModifier, removeAttributeModifier, removeEnchant, removeItemFlags, setAttributeModifiers, setCustomModelData, setDisplayName, setLocalizedName, setLore, setUnbreakable, setVersionMethods inherited from interface org.bukkit.persistence.PersistentDataHoldergetPersistentDataContainer
- 
Method Details- 
hasChargedProjectilesboolean hasChargedProjectiles()Returns whether the item has any charged projectiles.- Returns:
- whether charged projectiles are present
 
- 
getChargedProjectilesReturns an immutable list of the projectiles charged on this item.- Returns:
- charged projectiles
 
- 
setChargedProjectilesSets the projectiles charged on this item. Removes all projectiles when given null.- Parameters:
- projectiles- the projectiles to set
- Throws:
- IllegalArgumentException- if one of the projectiles is not an arrow or firework rocket
 
- 
addChargedProjectileAdds a charged projectile to this item.- Parameters:
- item- projectile
- Throws:
- IllegalArgumentException- if the projectile is not an arrow or firework rocket
 
 
-