|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.bukkit.event.Event
org.bukkit.event.entity.EntityEvent
org.bukkit.event.entity.EntityDamageEvent
public class EntityDamageEvent
Stores data for damage events
| Nested Class Summary | |
|---|---|
static class |
EntityDamageEvent.DamageCause
An enum to specify the cause of the damage |
static class |
EntityDamageEvent.DamageModifier
An enum to specify the types of modifier |
| Nested classes/interfaces inherited from class org.bukkit.event.Event |
|---|
Event.Result |
| Field Summary |
|---|
| Fields inherited from class org.bukkit.event.entity.EntityEvent |
|---|
entity |
| Constructor Summary | |
|---|---|
EntityDamageEvent(Entity damagee,
EntityDamageEvent.DamageCause cause,
double damage)
Deprecated. |
|
EntityDamageEvent(Entity damagee,
EntityDamageEvent.DamageCause cause,
int damage)
Deprecated. |
|
EntityDamageEvent(Entity damagee,
EntityDamageEvent.DamageCause cause,
Map<EntityDamageEvent.DamageModifier,Double> modifiers,
Map<EntityDamageEvent.DamageModifier,? extends com.google.common.base.Function<? super Double,Double>> modifierFunctions)
|
|
| Method Summary | |
|---|---|
int |
_INVALID_getDamage()
Deprecated. |
void |
_INVALID_setDamage(int damage)
Deprecated. |
EntityDamageEvent.DamageCause |
getCause()
Gets the cause of the damage. |
double |
getDamage()
Gets the raw amount of damage caused by the event |
double |
getDamage(EntityDamageEvent.DamageModifier type)
Gets the damage change for some modifier |
double |
getFinalDamage()
Gets the amount of damage caused by the event after all damage reduction is applied. |
static HandlerList |
getHandlerList()
|
HandlerList |
getHandlers()
|
double |
getOriginalDamage(EntityDamageEvent.DamageModifier type)
Gets the original damage for the specified modifier, as defined at this event's construction. |
boolean |
isApplicable(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 an UnsupportedOperationException. |
boolean |
isCancelled()
Gets the cancellation state of this event. |
void |
setCancelled(boolean cancel)
Sets the cancellation state of this event. |
void |
setDamage(double damage)
Sets the raw amount of damage caused by the event. |
void |
setDamage(EntityDamageEvent.DamageModifier type,
double damage)
Sets the damage for the specified modifier. |
| Methods inherited from class org.bukkit.event.entity.EntityEvent |
|---|
getEntity, getEntityType |
| Methods inherited from class org.bukkit.event.Event |
|---|
getEventName, isAsynchronous |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
@Deprecated
public EntityDamageEvent(Entity damagee,
EntityDamageEvent.DamageCause cause,
int damage)
@Deprecated
public EntityDamageEvent(Entity damagee,
EntityDamageEvent.DamageCause cause,
double damage)
public EntityDamageEvent(Entity damagee,
EntityDamageEvent.DamageCause cause,
Map<EntityDamageEvent.DamageModifier,Double> modifiers,
Map<EntityDamageEvent.DamageModifier,? extends com.google.common.base.Function<? super Double,Double>> modifierFunctions)
| Method Detail |
|---|
public boolean isCancelled()
Cancellable
isCancelled in interface Cancellablepublic void setCancelled(boolean cancel)
Cancellable
setCancelled in interface Cancellablecancel - true if you wish to cancel this event
public double getOriginalDamage(EntityDamageEvent.DamageModifier type)
throws IllegalArgumentException
type - the modifier
IllegalArgumentException - if type is null
public void setDamage(EntityDamageEvent.DamageModifier type,
double damage)
throws IllegalArgumentException,
UnsupportedOperationException
damage - the scalar value of the damage's modifier
IllegalArgumentException - if type is null
UnsupportedOperationException - if the caller does not support
the particular DamageModifier, or to rephrase, when isApplicable(DamageModifier) returns falsegetFinalDamage()
public double getDamage(EntityDamageEvent.DamageModifier type)
throws IllegalArgumentException
IllegalArgumentException - if type is nullEntityDamageEvent.DamageModifier.BASE
public boolean isApplicable(EntityDamageEvent.DamageModifier type)
throws IllegalArgumentException
setDamage(DamageModifier, double) will not
throw an UnsupportedOperationException.
EntityDamageEvent.DamageModifier.BASE is always applicable.
type - the modifier
IllegalArgumentException - if type is nullpublic double getDamage()
EntityDamageEvent.DamageModifier.BASEpublic final double getFinalDamage()
@Deprecated public int _INVALID_getDamage()
public void setDamage(double damage)
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.
damage - The raw amount of damage caused by the event@Deprecated public void _INVALID_setDamage(int damage)
public EntityDamageEvent.DamageCause getCause()
public HandlerList getHandlers()
getHandlers in class Eventpublic static HandlerList getHandlerList()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||