Class PlayerToggleEntityAgeLockEvent

java.lang.Object
org.bukkit.event.Event
org.bukkit.event.player.PlayerEvent
io.papermc.paper.event.player.PlayerToggleEntityAgeLockEvent
All Implemented Interfaces:
Cancellable

@NullMarked public class PlayerToggleEntityAgeLockEvent extends PlayerEvent implements Cancellable
Called when a player toggles the age lock of an entity using an item.
  • Constructor Details

  • Method Details

    • getEntity

      public LivingEntity getEntity()
      Returns the entity that is having its age locked or unlocked.
      Returns:
      the entity that is having its age locked or unlocked
    • getItem

      public ItemStack getItem()
      Returns the item being used to toggle the age lock of the entity.
      Returns:
      the item being used to toggle the age lock of the entity
    • getHand

      public EquipmentSlot getHand()
      Returns the hand being used to toggle the age lock of the entity.
      Returns:
      the hand being used to toggle the age lock of the entity
    • isAgeLocked

      public boolean isAgeLocked()
      Returns whether the age of the entity is going to be locked or not.
      Returns:
      whether the age of the entity is going to be locked or not
    • 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

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

      public static HandlerList getHandlerList()