Package org.bukkit.event.entity
Class ArrowBodyCountChangeEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.entity.EntityEvent
org.bukkit.event.entity.ArrowBodyCountChangeEvent
- All Implemented Interfaces:
- Cancellable
Called when an arrow enters or exists an entity's body.
- 
Nested Class SummaryNested classes/interfaces inherited from class org.bukkit.event.EventEvent.Result
- 
Field SummaryFields inherited from class org.bukkit.event.entity.EntityEvententity
- 
Constructor SummaryConstructorsConstructorDescriptionArrowBodyCountChangeEvent(LivingEntity entity, int oldAmount, int newAmount, boolean isReset) 
- 
Method SummaryModifier and TypeMethodDescriptionReturns the Entity involved in this eventstatic HandlerListintGet the new amount of arrows in the entity's body.intGets the old amount of arrows in the entity's body.booleanGets the cancellation state of this event.booleanisReset()Whether the event was called because the entity was reset.voidsetCancelled(boolean cancel) Sets the cancellation state of this event.voidsetNewAmount(int newAmount) Sets the final amount of arrows in the entity's body.Methods inherited from class org.bukkit.event.entity.EntityEventgetEntityTypeMethods inherited from class org.bukkit.event.EventgetEventName, isAsynchronous
- 
Constructor Details- 
ArrowBodyCountChangeEventpublic ArrowBodyCountChangeEvent(@NotNull LivingEntity entity, int oldAmount, int newAmount, boolean isReset) 
 
- 
- 
Method Details- 
isResetpublic boolean isReset()Whether the event was called because the entity was reset.- Returns:
- was reset
 
- 
getOldAmountpublic int getOldAmount()Gets the old amount of arrows in the entity's body.- Returns:
- amount of arrows
 
- 
getNewAmountpublic int getNewAmount()Get the new amount of arrows in the entity's body.- Returns:
- amount of arrows
 
- 
setNewAmountpublic void setNewAmount(int newAmount) Sets the final amount of arrows in the entity's body.- Parameters:
- newAmount- amount of arrows
 
- 
getEntityDescription copied from class:EntityEventReturns the Entity involved in this event- Overrides:
- getEntityin class- EntityEvent
- Returns:
- Entity who is involved in this event
 
- 
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
 
- 
getHandlers- Specified by:
- getHandlersin class- Event
 
- 
getHandlerList
 
-