Class PlayerItemAnimationEvent

java.lang.Object
net.minestom.server.event.player.PlayerItemAnimationEvent
All Implemented Interfaces:
Event, CancellableEvent, EntityEvent, EntityInstanceEvent, InstanceEvent, PlayerEvent, PlayerInstanceEvent

public class PlayerItemAnimationEvent extends Object implements PlayerInstanceEvent, CancellableEvent
Used when a Player starts the animation of an item.
See Also:
  • Constructor Details

  • Method Details

    • getItemAnimationType

      @NotNull public @NotNull PlayerItemAnimationEvent.ItemAnimationType getItemAnimationType()
      Gets the animation.
      Returns:
      the animation
    • getHand

      @NotNull public @NotNull PlayerHand getHand()
      Gets the hand that was used.
      Returns:
      the hand
    • getPlayer

      @NotNull public @NotNull Player getPlayer()
      Description copied from interface: PlayerEvent
      Gets the player.
      Specified by:
      getPlayer in interface PlayerEvent
      Returns:
      the player
    • isCancelled

      public boolean isCancelled()
      Description copied from interface: CancellableEvent
      Gets if the Event should be cancelled or not.
      Specified by:
      isCancelled in interface CancellableEvent
      Returns:
      true if the event should be cancelled
    • setCancelled

      public void setCancelled(boolean cancel)
      Description copied from interface: CancellableEvent
      Marks the Event as cancelled or not.
      Specified by:
      setCancelled in interface CancellableEvent
      Parameters:
      cancel - true if the event should be cancelled, false otherwise