public static enum PlayerDamageEvent.Cause extends java.lang.Enum<PlayerDamageEvent.Cause>
PlayerDamageEvent
was triggered exactly
(i.e. what's causing the damage).Enum Constant and Description |
---|
Bleeding
Player is bleeding
|
Burning
Player came in contact with lava or fire
|
Dehydration
Player is dying of dehydration
|
Drowning
Player is drowning
|
Explosion
Player took damage from an explosion
|
FallDamage
Player took fall damage
|
NpcAttack
An npc attacked this player
|
PlayerAttack
Another player attacked this player.
|
Starvation
Player is dying of starvation
|
Temperature
Player is exposed to cold temperatures (hypothermia)
|
Trap
Player stepped into a trap (e.g. spikes)
|
Unknown
Unknown reason... you cannot cancel the event in this case
|
Modifier and Type | Method and Description |
---|---|
static PlayerDamageEvent.Cause |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PlayerDamageEvent.Cause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlayerDamageEvent.Cause Unknown
public static final PlayerDamageEvent.Cause PlayerAttack
PlayerHitEvent
is also triggered in this casepublic static final PlayerDamageEvent.Cause NpcAttack
public static final PlayerDamageEvent.Cause Drowning
public static final PlayerDamageEvent.Cause Burning
public static final PlayerDamageEvent.Cause Explosion
public static final PlayerDamageEvent.Cause FallDamage
public static final PlayerDamageEvent.Cause Bleeding
public static final PlayerDamageEvent.Cause Starvation
public static final PlayerDamageEvent.Cause Dehydration
public static final PlayerDamageEvent.Cause Temperature
public static final PlayerDamageEvent.Cause Trap
public static PlayerDamageEvent.Cause[] values()
for (PlayerDamageEvent.Cause c : PlayerDamageEvent.Cause.values()) System.out.println(c);
public static PlayerDamageEvent.Cause valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null