Package net.minestom.server.event.player
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 Summary
ConstructorsConstructorDescriptionPlayerUseItemEvent(@NotNull Player player, Player.Hand hand, @NotNull ItemStack itemStack) -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface net.minestom.server.event.trait.EntityInstanceEvent
getInstanceMethods inherited from interface net.minestom.server.event.trait.PlayerEvent
getEntity
-
Constructor Details
-
PlayerUseItemEvent
public PlayerUseItemEvent(@NotNull @NotNull Player player, @NotNull Player.Hand hand, @NotNull @NotNull ItemStack itemStack)
-
-
Method Details
-
getHand
Gets which hand the player used.- Returns:
- the hand used
-
getItemStack
Gets the item which have been used.- Specified by:
getItemStackin interfaceItemEvent- Returns:
- the item
-
isCancelled
public boolean isCancelled()Description copied from interface:CancellableEventGets if theEventshould be cancelled or not.- Specified by:
isCancelledin interfaceCancellableEvent- Returns:
- true if the event should be cancelled
-
setCancelled
public void setCancelled(boolean cancel) Description copied from interface:CancellableEventMarks theEventas cancelled or not.- Specified by:
setCancelledin interfaceCancellableEvent- Parameters:
cancel- true if the event should be cancelled, false otherwise
-
getPlayer
Description copied from interface:PlayerEventGets the player.- Specified by:
getPlayerin interfacePlayerEvent- Returns:
- the player
-