|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<EntityDamageEvent.DamageModifier> org.bukkit.event.entity.EntityDamageEvent.DamageModifier
public static enum EntityDamageEvent.DamageModifier
An enum to specify the types of modifier
Enum Constant Summary | |
---|---|
ABSORPTION
This represents the damage reduction caused by the absorption potion effect. |
|
ARMOR
This represents the damage reduction caused by wearing armor. |
|
BASE
This represents the amount of damage being done, also known as the raw EntityDamageEvent.getDamage() . |
|
BLOCKING
This represents the damage reduction caused by blocking, only present for Players . |
|
HARD_HAT
This represents the damage reduced by a wearing a helmet when hit by a falling block. |
|
MAGIC
This represents the damage reduction caused by the combination of: Armor enchantments Witch's potion resistance |
|
RESISTANCE
This represents the damage reduction caused by the Resistance potion effect. |
Method Summary | |
---|---|
static EntityDamageEvent.DamageModifier |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static EntityDamageEvent.DamageModifier[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final EntityDamageEvent.DamageModifier BASE
EntityDamageEvent.getDamage()
.
public static final EntityDamageEvent.DamageModifier HARD_HAT
public static final EntityDamageEvent.DamageModifier BLOCKING
Players
.
public static final EntityDamageEvent.DamageModifier ARMOR
public static final EntityDamageEvent.DamageModifier RESISTANCE
public static final EntityDamageEvent.DamageModifier MAGIC
public static final EntityDamageEvent.DamageModifier ABSORPTION
Method Detail |
---|
public static EntityDamageEvent.DamageModifier[] values()
for (EntityDamageEvent.DamageModifier c : EntityDamageEvent.DamageModifier.values()) System.out.println(c);
public static EntityDamageEvent.DamageModifier valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |