Package org.bukkit.event.entity
Enum 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
-
Enum Constant Summary
Enum Constants Enum Constant Description CUSTOM
Any other reason not covered by the reasons aboveEATING
When a player regains health from eating consumablesENDER_CRYSTAL
When an ender dragon regains health from an ender crystalMAGIC
When a player is healed by a potion or spellMAGIC_REGEN
When a player is healed over time by a potion or spellREGEN
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 satisfiedWITHER
When an entity is damaged by the Wither potion effectWITHER_SPAWN
When a wither is filling its health during spawning -
Method Summary
Modifier and Type Method Description static EntityRegainHealthEvent.RegainReason
valueOf(String name)
Returns the enum constant of this type with the specified name.static EntityRegainHealthEvent.RegainReason[]
values()
Returns an array containing the constants of this enum type, 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 a player 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 type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-