Class PigZombieAngerEvent

All Implemented Interfaces:
Cancellable

public class PigZombieAngerEvent extends EntityEvent implements Cancellable
Called when a Pig Zombie is angered by another entity.

If the event is cancelled, the pig zombie will not be angered.

  • Constructor Details

    • PigZombieAngerEvent

      public PigZombieAngerEvent(@NotNull PigZombie pigZombie, @Nullable Entity target, int newAnger)
  • Method Details

    • getTarget

      @Nullable public Entity getTarget()
      Gets the entity (if any) which triggered this anger update.
      Returns:
      triggering entity, or null
    • getNewAnger

      public int getNewAnger()
      Gets the new anger resulting from this event.
      Returns:
      new anger
      See Also:
    • setNewAnger

      public void setNewAnger(int newAnger)
      Sets the new anger resulting from this event.
      Parameters:
      newAnger - the new anger
      See Also:
    • getEntity

      @NotNull public PigZombie getEntity()
      Description copied from class: EntityEvent
      Returns the Entity involved in this event
      Overrides:
      getEntity in class EntityEvent
      Returns:
      Entity who is involved in this event
    • isCancelled

      public boolean isCancelled()
      Description copied from interface: Cancellable
      Gets 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:
      isCancelled in interface Cancellable
      Returns:
      true if this event is cancelled
    • setCancelled

      public void setCancelled(boolean cancel)
      Description copied from interface: Cancellable
      Sets 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:
      setCancelled in interface Cancellable
      Parameters:
      cancel - true if you wish to cancel this event
    • getHandlers

      @NotNull public HandlerList getHandlers()
      Specified by:
      getHandlers in class Event
    • getHandlerList

      @NotNull public static HandlerList getHandlerList()