Package org.bukkit.event.entity
Enum EntityDamageEvent.DamageModifier
- java.lang.Object
-
- java.lang.Enum<EntityDamageEvent.DamageModifier>
-
- org.bukkit.event.entity.EntityDamageEvent.DamageModifier
-
- All Implemented Interfaces:
Serializable
,Comparable<EntityDamageEvent.DamageModifier>
- Enclosing class:
- EntityDamageEvent
@Deprecated public static enum EntityDamageEvent.DamageModifier extends Enum<EntityDamageEvent.DamageModifier>
Deprecated.This API is responsible for a large number of implementation problems and is in general unsustainable to maintain. It is likely to be removed very soon in a subsequent release. Please see https://www.spigotmc.org/threads/194446/ for more information.An enum to specify the types of modifier
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABSORPTION
Deprecated.This represents the damage reduction caused by the absorption potion effect.ARMOR
Deprecated.This represents the damage reduction caused by wearing armor.BASE
Deprecated.This represents the amount of damage being done, also known as the rawEntityDamageEvent.getDamage()
.BLOCKING
Deprecated.This represents the damage reduction caused by blocking, only present forPlayers
.HARD_HAT
Deprecated.This represents the damage reduced by a wearing a helmet when hit by a falling block.MAGIC
Deprecated.This represents the damage reduction caused by the combination of: Armor enchantments Witch's potion resistanceRESISTANCE
Deprecated.This represents the damage reduction caused by the Resistance potion effect.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static EntityDamageEvent.DamageModifier
valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static EntityDamageEvent.DamageModifier[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BASE
public static final EntityDamageEvent.DamageModifier BASE
Deprecated.This represents the amount of damage being done, also known as the rawEntityDamageEvent.getDamage()
.
-
HARD_HAT
public static final EntityDamageEvent.DamageModifier HARD_HAT
Deprecated.This represents the damage reduced by a wearing a helmet when hit by a falling block.
-
BLOCKING
public static final EntityDamageEvent.DamageModifier BLOCKING
Deprecated.This represents the damage reduction caused by blocking, only present forPlayers
.
-
ARMOR
public static final EntityDamageEvent.DamageModifier ARMOR
Deprecated.This represents the damage reduction caused by wearing armor.
-
RESISTANCE
public static final EntityDamageEvent.DamageModifier RESISTANCE
Deprecated.This represents the damage reduction caused by the Resistance potion effect.
-
MAGIC
public static final EntityDamageEvent.DamageModifier MAGIC
Deprecated.This represents the damage reduction caused by the combination of:- Armor enchantments
- Witch's potion resistance
-
ABSORPTION
public static final EntityDamageEvent.DamageModifier ABSORPTION
Deprecated.This represents the damage reduction caused by the absorption potion effect.
-
-
Method Detail
-
values
public static EntityDamageEvent.DamageModifier[] values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EntityDamageEvent.DamageModifier c : EntityDamageEvent.DamageModifier.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EntityDamageEvent.DamageModifier valueOf(String name)
Deprecated.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
-
-