Package org.bukkit.entity
Interface ThrownPotion
- All Superinterfaces:
CommandSender,Entity,Metadatable,Nameable,Permissible,PersistentDataHolder,Projectile,ServerOperator
- All Known Subinterfaces:
LingeringPotion,SplashPotion
public interface ThrownPotion extends Projectile
Represents a thrown potion bottle
-
Nested Class Summary
-
Method Summary
Modifier and Type Method Description Collection<PotionEffect>getEffects()Returns the effects that are applied by this potion.ItemStackgetItem()Returns a copy of the ItemStack for this thrown potion.voidsetItem(ItemStack item)Set the ItemStack for this thrown potion.Methods inherited from interface org.bukkit.command.CommandSender
getName, sendMessage, sendMessage, sendMessage, sendMessageMethods inherited from interface org.bukkit.entity.Entity
addPassenger, addScoreboardTag, eject, getBoundingBox, getEntityId, getFacing, getFallDistance, getFireTicks, getHeight, getLastDamageCause, getLocation, getLocation, getMaxFireTicks, getNearbyEntities, getPassenger, getPassengers, getPistonMoveReaction, getPortalCooldown, getPose, getScoreboardTags, getServer, getTicksLived, getType, getUniqueId, getVehicle, getVelocity, getWidth, getWorld, hasGravity, isCustomNameVisible, isDead, isEmpty, isGlowing, isInsideVehicle, isInvulnerable, isOnGround, isPersistent, isSilent, isValid, leaveVehicle, playEffect, remove, removePassenger, removeScoreboardTag, setCustomNameVisible, setFallDistance, setFireTicks, setGlowing, setGravity, setInvulnerable, setLastDamageCause, setPassenger, setPersistent, setPortalCooldown, setRotation, setSilent, setTicksLived, setVelocity, spigot, teleport, teleport, teleport, teleportMethods inherited from interface org.bukkit.metadata.Metadatable
getMetadata, hasMetadata, removeMetadata, setMetadataMethods inherited from interface org.bukkit.permissions.Permissible
addAttachment, addAttachment, addAttachment, addAttachment, getEffectivePermissions, hasPermission, hasPermission, isPermissionSet, isPermissionSet, recalculatePermissions, removeAttachmentMethods inherited from interface org.bukkit.persistence.PersistentDataHolder
getPersistentDataContainerMethods inherited from interface org.bukkit.entity.Projectile
doesBounce, getShooter, setBounce, setShooter
-
Method Details
-
getEffects
Returns the effects that are applied by this potion.- Returns:
- The potion effects
-
getItem
Returns a copy of the ItemStack for this thrown potion.Altering this copy will not alter the thrown potion directly. If you want to alter the thrown potion, you must use the
setItemStackmethod.- Returns:
- A copy of the ItemStack for this thrown potion.
-
setItem
Set the ItemStack for this thrown potion.The ItemStack must be of type
Material.SPLASH_POTIONorMaterial.LINGERING_POTION, otherwise an exception is thrown.- Parameters:
item- New ItemStack
-