Class PlayerUseItemEvent

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

public class PlayerUseItemEvent extends Object implements PlayerInstanceEvent, ItemEvent, CancellableEvent
Event when an item is used without clicking on a block.
  • Constructor Details

    • PlayerUseItemEvent

      public PlayerUseItemEvent(@NotNull @NotNull Player player, @NotNull Player.Hand hand, @NotNull @NotNull ItemStack itemStack)
  • Method Details

    • getHand

      @NotNull public Player.Hand getHand()
      Gets which hand the player used.
      Returns:
      the hand used
    • getItemStack

      @NotNull public @NotNull ItemStack getItemStack()
      Gets the item which have been used.
      Specified by:
      getItemStack in interface ItemEvent
      Returns:
      the item
    • 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
    • getPlayer

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