public static enum NpcDeathEvent.Cause extends java.lang.Enum<NpcDeathEvent.Cause>
NpcDeathEvent
was triggered exactly
(i.e. why the npc actually died).Enum Constant and Description |
---|
Burned
Npc burned to death (e.g. it fell into lava)
|
Drowned
Npc drowned
|
Explosion
Npc was killed by an explosion
|
FallDamage
Npc died due to fall damage
|
KilledByNpc
Npc was killed by another npc
|
KilledByPlayer
Npc was killed by a player
|
OldAge
Npc died of old age (if "age" is greather than the max life time)
|
Trap
Npc died in a trap
|
Unknown
Nobody knows why this npc died...
|
Modifier and Type | Method and Description |
---|---|
static NpcDeathEvent.Cause |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NpcDeathEvent.Cause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NpcDeathEvent.Cause Unknown
public static final NpcDeathEvent.Cause KilledByPlayer
public static final NpcDeathEvent.Cause KilledByNpc
public static final NpcDeathEvent.Cause Drowned
public static final NpcDeathEvent.Cause Burned
public static final NpcDeathEvent.Cause Explosion
public static final NpcDeathEvent.Cause FallDamage
public static final NpcDeathEvent.Cause Trap
public static final NpcDeathEvent.Cause OldAge
public static NpcDeathEvent.Cause[] values()
for (NpcDeathEvent.Cause c : NpcDeathEvent.Cause.values()) System.out.println(c);
public static NpcDeathEvent.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