Package org.bukkit.event.entity
Enum Class EntityPotionEffectEvent.Cause
- All Implemented Interfaces:
Serializable
,Comparable<EntityPotionEffectEvent.Cause>
,Constable
- Enclosing class:
EntityPotionEffectEvent
An enum to specify the cause why an effect was changed.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionWhen the entity stands inside an area effect cloud.When the entity is hit by an spectral or tipped arrow.When the entity is inflicted with a potion effect due to an entity attack (e.g.When an entity gets the effect from an axolotl.When beacon effects get applied due to the entity being nearby.When a potion effect is changed due to the /effect command.When the entity gets the effect from a conduit.When a conversion from a villager zombie to a villager is started or finished.When all effects are removed due to death.When the entity gets the effect from a dolphin.When the effect was removed due to expiration.When an effect is inflicted due to food (e.g.When an illusion illager makes himself disappear.When all effects are removed due to a bucket of milk.Deprecated.no longer used, player now gets an ominous bottle insteadWhen a potion effect is modified through the plugin methods.When the entity drinks a potion.When the entity is inflicted with an effect due to a splash potion.When a spider gets effects when spawning on hard difficulty.When the entity gets effects from a totem item saving its life.When the entity gets water breathing by wearing a turtle helmet.When the Cause is missing.When a villager gets regeneration after a trade.When an entity gets the effect from a warden.When an entity comes in contact with a wither rose. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static EntityPotionEffectEvent.Cause[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
AREA_EFFECT_CLOUD
When the entity stands inside an area effect cloud. -
ARROW
When the entity is hit by an spectral or tipped arrow. -
ATTACK
When the entity is inflicted with a potion effect due to an entity attack (e.g. a cave spider or a shulker bullet). -
AXOLOTL
When an entity gets the effect from an axolotl. -
BEACON
When beacon effects get applied due to the entity being nearby. -
COMMAND
When a potion effect is changed due to the /effect command. -
CONDUIT
When the entity gets the effect from a conduit. -
CONVERSION
When a conversion from a villager zombie to a villager is started or finished. -
DEATH
When all effects are removed due to death. -
DOLPHIN
When the entity gets the effect from a dolphin. -
EXPIRATION
When the effect was removed due to expiration. -
FOOD
When an effect is inflicted due to food (e.g. when a player eats or a cookie is given to a parrot). -
ILLUSION
When an illusion illager makes himself disappear. -
MILK
When all effects are removed due to a bucket of milk. -
PATROL_CAPTAIN
Deprecated.no longer used, player now gets an ominous bottle insteadWhen a player gets bad omen after killing a patrol captain. -
PLUGIN
When a potion effect is modified through the plugin methods. -
POTION_DRINK
When the entity drinks a potion. -
POTION_SPLASH
When the entity is inflicted with an effect due to a splash potion. -
SPIDER_SPAWN
When a spider gets effects when spawning on hard difficulty. -
TOTEM
When the entity gets effects from a totem item saving its life. -
TURTLE_HELMET
When the entity gets water breathing by wearing a turtle helmet. -
UNKNOWN
When the Cause is missing. -
VILLAGER_TRADE
When a villager gets regeneration after a trade. -
WARDEN
When an entity gets the effect from a warden. -
WITHER_ROSE
When an entity comes in contact with a wither rose.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-