Package org.bukkit.event.entity
Enum EntityPotionEffectEvent.Cause
- java.lang.Object
-
- java.lang.Enum<EntityPotionEffectEvent.Cause>
-
- org.bukkit.event.entity.EntityPotionEffectEvent.Cause
-
- All Implemented Interfaces:
Serializable
,Comparable<EntityPotionEffectEvent.Cause>
- Enclosing class:
- EntityPotionEffectEvent
public static enum EntityPotionEffectEvent.Cause extends Enum<EntityPotionEffectEvent.Cause>
An enum to specify the cause why an effect was changed.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description 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).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 (Note: This is called on respawn, so it's player only!)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.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 it's 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.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EntityPotionEffectEvent.Cause
valueOf(String name)
Returns the enum constant of this type with the specified name.static EntityPotionEffectEvent.Cause[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AREA_EFFECT_CLOUD
public static final EntityPotionEffectEvent.Cause AREA_EFFECT_CLOUD
When the entity stands inside an area effect cloud.
-
ARROW
public static final EntityPotionEffectEvent.Cause ARROW
When the entity is hit by an spectral or tipped arrow.
-
ATTACK
public static final EntityPotionEffectEvent.Cause ATTACK
When the entity is inflicted with a potion effect due to an entity attack (e.g. a cave spider or a shulker bullet).
-
BEACON
public static final EntityPotionEffectEvent.Cause BEACON
When beacon effects get applied due to the entity being nearby.
-
COMMAND
public static final EntityPotionEffectEvent.Cause COMMAND
When a potion effect is changed due to the /effect command.
-
CONDUIT
public static final EntityPotionEffectEvent.Cause CONDUIT
When the entity gets the effect from a conduit.
-
CONVERSION
public static final EntityPotionEffectEvent.Cause CONVERSION
When a conversion from a villager zombie to a villager is started or finished.
-
DEATH
public static final EntityPotionEffectEvent.Cause DEATH
When all effects are removed due to death (Note: This is called on respawn, so it's player only!)
-
DOLPHIN
public static final EntityPotionEffectEvent.Cause DOLPHIN
When the entity gets the effect from a dolphin.
-
EXPIRATION
public static final EntityPotionEffectEvent.Cause EXPIRATION
When the effect was removed due to expiration.
-
FOOD
public static final EntityPotionEffectEvent.Cause FOOD
When an effect is inflicted due to food (e.g. when a player eats or a cookie is given to a parrot).
-
ILLUSION
public static final EntityPotionEffectEvent.Cause ILLUSION
When an illusion illager makes himself disappear.
-
MILK
public static final EntityPotionEffectEvent.Cause MILK
When all effects are removed due to a bucket of milk.
-
PLUGIN
public static final EntityPotionEffectEvent.Cause PLUGIN
When a potion effect is modified through the plugin methods.
-
POTION_DRINK
public static final EntityPotionEffectEvent.Cause POTION_DRINK
When the entity drinks a potion.
-
POTION_SPLASH
public static final EntityPotionEffectEvent.Cause POTION_SPLASH
When the entity is inflicted with an effect due to a splash potion.
-
SPIDER_SPAWN
public static final EntityPotionEffectEvent.Cause SPIDER_SPAWN
When a spider gets effects when spawning on hard difficulty.
-
TOTEM
public static final EntityPotionEffectEvent.Cause TOTEM
When the entity gets effects from a totem item saving it's life.
-
TURTLE_HELMET
public static final EntityPotionEffectEvent.Cause TURTLE_HELMET
When the entity gets water breathing by wearing a turtle helmet.
-
UNKNOWN
public static final EntityPotionEffectEvent.Cause UNKNOWN
When the Cause is missing.
-
VILLAGER_TRADE
public static final EntityPotionEffectEvent.Cause VILLAGER_TRADE
When a villager gets regeneration after a trade.
-
-
Method Detail
-
values
public static EntityPotionEffectEvent.Cause[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EntityPotionEffectEvent.Cause c : EntityPotionEffectEvent.Cause.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EntityPotionEffectEvent.Cause valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
-