Package org.bukkit.event.entity
Enum Class EntityRegainHealthEvent.RegainReason
java.lang.Object
java.lang.Enum<EntityRegainHealthEvent.RegainReason>
org.bukkit.event.entity.EntityRegainHealthEvent.RegainReason
- All Implemented Interfaces:
Serializable
,Comparable<EntityRegainHealthEvent.RegainReason>
,Constable
- Enclosing class:
EntityRegainHealthEvent
public static enum EntityRegainHealthEvent.RegainReason
extends Enum<EntityRegainHealthEvent.RegainReason>
An enum to specify the type of health regaining that is occurring
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAny other reason not covered by the reasons aboveWhen an animal regains health from eating consumablesWhen an ender dragon regains health from an ender crystalWhen a player is healed by a potion or spellWhen a player is healed over time by a potion or spellWhen a player regains health from regenerating due to Peaceful mode (difficulty=0)When a player regains health from regenerating due to their hunger being satisfiedWhen an entity is damaged by the Wither potion effectWhen a wither is filling its health during spawning -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static EntityRegainHealthEvent.RegainReason[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
REGEN
When a player regains health from regenerating due to Peaceful mode (difficulty=0) -
SATIATED
When a player regains health from regenerating due to their hunger being satisfied -
EATING
When an animal regains health from eating consumables -
ENDER_CRYSTAL
When an ender dragon regains health from an ender crystal -
MAGIC
When a player is healed by a potion or spell -
MAGIC_REGEN
When a player is healed over time by a potion or spell -
WITHER_SPAWN
When a wither is filling its health during spawning -
WITHER
When an entity is damaged by the Wither potion effect -
CUSTOM
Any other reason not covered by the reasons above
-
-
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
-