Serializable
, Comparable<EntityRegainHealthEvent.RegainReason>
public static enum EntityRegainHealthEvent.RegainReason extends Enum<EntityRegainHealthEvent.RegainReason>
Enum Constant | Description |
---|---|
CUSTOM |
Any other reason not covered by the reasons above
|
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
|
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
|
WITHER |
When an entity is damaged by the Wither potion effect
|
WITHER_SPAWN |
When a wither is filling its health during spawning
|
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.
|
public static final EntityRegainHealthEvent.RegainReason REGEN
public static final EntityRegainHealthEvent.RegainReason SATIATED
public static final EntityRegainHealthEvent.RegainReason EATING
public static final EntityRegainHealthEvent.RegainReason ENDER_CRYSTAL
public static final EntityRegainHealthEvent.RegainReason MAGIC
public static final EntityRegainHealthEvent.RegainReason MAGIC_REGEN
public static final EntityRegainHealthEvent.RegainReason WITHER_SPAWN
public static final EntityRegainHealthEvent.RegainReason WITHER
public static final EntityRegainHealthEvent.RegainReason CUSTOM
public static EntityRegainHealthEvent.RegainReason[] values()
for (EntityRegainHealthEvent.RegainReason c : EntityRegainHealthEvent.RegainReason.values()) System.out.println(c);
public static EntityRegainHealthEvent.RegainReason valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2019. All rights reserved.