Package org.bukkit.event.entity
Enum Class EntityDamageEvent.DamageModifier
java.lang.Object
java.lang.Enum<EntityDamageEvent.DamageModifier>
org.bukkit.event.entity.EntityDamageEvent.DamageModifier
- All Implemented Interfaces:
Serializable
,Comparable<EntityDamageEvent.DamageModifier>
,Constable
- 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
this thread for more information.
An enum to specify the types of modifier
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionDeprecated.This represents the damage reduction caused by the absorption potion effect.Deprecated.This represents the damage reduction caused by wearing armor.Deprecated.This represents the amount of damage being done, also known as the rawEntityDamageEvent.getDamage()
.Deprecated.This represents the damage reduction caused by blocking, only present forPlayers
.Deprecated.This represents the damage increased by freezing status.Deprecated.This represents the damage reduced by a wearing a helmet when hit by a falling block.Deprecated.This represents the damage reduction caused by the combination of: Armor enchantments Witch's potion resistanceDeprecated.This represents the damage reduction caused by the Resistance potion effect. -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Returns the enum constant of this class with the specified name.static EntityDamageEvent.DamageModifier[]
values()
Deprecated.Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BASE
Deprecated.This represents the amount of damage being done, also known as the rawEntityDamageEvent.getDamage()
. -
FREEZING
Deprecated.This represents the damage increased by freezing status. -
HARD_HAT
Deprecated.This represents the damage reduced by a wearing a helmet when hit by a falling block. -
BLOCKING
Deprecated.This represents the damage reduction caused by blocking, only present forPlayers
. -
ARMOR
Deprecated.This represents the damage reduction caused by wearing armor. -
RESISTANCE
Deprecated.This represents the damage reduction caused by the Resistance potion effect. -
MAGIC
Deprecated.This represents the damage reduction caused by the combination of:- Armor enchantments
- Witch's potion resistance
-
ABSORPTION
Deprecated.This represents the damage reduction caused by the absorption potion effect.
-
-
Method Details
-
values
Deprecated.Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Deprecated.Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-