Package org.bukkit.event.entity
Class EntityDamageEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.entity.EntityEvent
org.bukkit.event.entity.EntityDamageEvent
- All Implemented Interfaces:
- Cancellable
- Direct Known Subclasses:
- EntityDamageByBlockEvent,- EntityDamageByEntityEvent
public class EntityDamageEvent extends EntityEvent implements Cancellable
Stores data for damage events
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classEntityDamageEvent.DamageCauseAn enum to specify the cause of the damagestatic classEntityDamageEvent.DamageModifierAn enum to specify the types of modifier
- 
Field Summary
- 
Constructor SummaryConstructors Constructor Description EntityDamageEvent(Entity damagee, EntityDamageEvent.DamageCause cause, double damage)Deprecated.EntityDamageEvent(Entity damagee, EntityDamageEvent.DamageCause cause, int damage)Deprecated.EntityDamageEvent(Entity damagee, EntityDamageEvent.DamageCause cause, java.util.Map<EntityDamageEvent.DamageModifier,java.lang.Double> modifiers, java.util.Map<EntityDamageEvent.DamageModifier,? extends com.google.common.base.Function<? super java.lang.Double,java.lang.Double>> modifierFunctions)
- 
Method SummaryModifier and Type Method Description int_INVALID_getDamage()Deprecated.void_INVALID_setDamage(int damage)Deprecated.EntityDamageEvent.DamageCausegetCause()Gets the cause of the damage.doublegetDamage()Gets the raw amount of damage caused by the eventdoublegetDamage(EntityDamageEvent.DamageModifier type)Gets the damage change for some modifierdoublegetFinalDamage()Gets the amount of damage caused by the event after all damage reduction is applied.static HandlerListgetHandlerList()HandlerListgetHandlers()doublegetOriginalDamage(EntityDamageEvent.DamageModifier type)Gets the original damage for the specified modifier, as defined at this event's construction.booleanisApplicable(EntityDamageEvent.DamageModifier type)This checks to see if a particular modifier is valid for this event's caller, such that,setDamage(DamageModifier, double)will not throw anUnsupportedOperationException.booleanisCancelled()Gets the cancellation state of this event.voidsetCancelled(boolean cancel)Sets the cancellation state of this event.voidsetDamage(double damage)Sets the raw amount of damage caused by the event.voidsetDamage(EntityDamageEvent.DamageModifier type, double damage)Sets the damage for the specified modifier.
- 
Constructor Details- 
EntityDamageEvent@Deprecated public EntityDamageEvent(Entity damagee, EntityDamageEvent.DamageCause cause, int damage)Deprecated.
- 
EntityDamageEvent@Deprecated public EntityDamageEvent(Entity damagee, EntityDamageEvent.DamageCause cause, double damage)Deprecated.
- 
EntityDamageEventpublic EntityDamageEvent(Entity damagee, EntityDamageEvent.DamageCause cause, java.util.Map<EntityDamageEvent.DamageModifier,java.lang.Double> modifiers, java.util.Map<EntityDamageEvent.DamageModifier,? extends com.google.common.base.Function<? super java.lang.Double,java.lang.Double>> modifierFunctions)
 
- 
- 
Method Details- 
isCancelledpublic boolean isCancelled()Description copied from interface:CancellableGets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins- Specified by:
- isCancelledin interface- Cancellable
- Returns:
- true if this event is cancelled
 
- 
setCancelledpublic void setCancelled(boolean cancel)Description copied from interface:CancellableSets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins.- Specified by:
- setCancelledin interface- Cancellable
- Parameters:
- cancel- true if you wish to cancel this event
 
- 
getOriginalDamagepublic double getOriginalDamage(EntityDamageEvent.DamageModifier type) throws java.lang.IllegalArgumentExceptionGets the original damage for the specified modifier, as defined at this event's construction.- Parameters:
- type- the modifier
- Returns:
- the original damage
- Throws:
- java.lang.IllegalArgumentException- if type is null
 
- 
setDamagepublic void setDamage(EntityDamageEvent.DamageModifier type, double damage) throws java.lang.IllegalArgumentException, java.lang.UnsupportedOperationExceptionSets the damage for the specified modifier.- Parameters:
- type- the damage modifier
- damage- the scalar value of the damage's modifier
- Throws:
- java.lang.IllegalArgumentException- if type is null
- java.lang.UnsupportedOperationException- if the caller does not support the particular DamageModifier, or to rephrase, when- isApplicable(DamageModifier)returns false
- See Also:
- getFinalDamage()
 
- 
getDamagepublic double getDamage(EntityDamageEvent.DamageModifier type) throws java.lang.IllegalArgumentExceptionGets the damage change for some modifier- Parameters:
- type- the damage modifier
- Returns:
- The raw amount of damage caused by the event
- Throws:
- java.lang.IllegalArgumentException- if type is null
- See Also:
- EntityDamageEvent.DamageModifier.BASE
 
- 
isApplicablepublic boolean isApplicable(EntityDamageEvent.DamageModifier type) throws java.lang.IllegalArgumentExceptionThis checks to see if a particular modifier is valid for this event's caller, such that,setDamage(DamageModifier, double)will not throw anUnsupportedOperationException.EntityDamageEvent.DamageModifier.BASEis always applicable.- Parameters:
- type- the modifier
- Returns:
- true if the modifier is supported by the caller, false otherwise
- Throws:
- java.lang.IllegalArgumentException- if type is null
 
- 
getDamagepublic double getDamage()Gets the raw amount of damage caused by the event- Returns:
- The raw amount of damage caused by the event
- See Also:
- EntityDamageEvent.DamageModifier.BASE
 
- 
getFinalDamagepublic final double getFinalDamage()Gets the amount of damage caused by the event after all damage reduction is applied.- Returns:
- the amount of damage caused by the event
 
- 
_INVALID_getDamage@Deprecated public int _INVALID_getDamage()Deprecated.This method exists for legacy reasons to provide backwards compatibility. It will not exist at runtime and should not be used under any circumstances.- Returns:
- the (rounded) damage
 
- 
setDamagepublic void setDamage(double damage)Sets the raw amount of damage caused by the event.For compatibility this also recalculates the modifiers and scales them by the difference between the modifier for the previous damage value and the new one. - Parameters:
- damage- The raw amount of damage caused by the event
 
- 
_INVALID_setDamage@Deprecated public void _INVALID_setDamage(int damage)Deprecated.This method exists for legacy reasons to provide backwards compatibility. It will not exist at runtime and should not be used under any circumstances.- Parameters:
- damage- the new damage value
 
- 
getCauseGets the cause of the damage.- Returns:
- A DamageCause value detailing the cause of the damage.
 
- 
getHandlers- Specified by:
- getHandlersin class- Event
 
- 
getHandlerList
 
-