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(Player player, PlayerHand hand, ItemStack itemStack, long itemUseTime) -
Method Summary
Modifier and TypeMethodDescriptiongetHand()Gets which hand the player used.Gets the item which has been used.longGets the item usage duration.Gets the player.booleanGets if theEventshould be cancelled or not.voidsetCancelled(boolean cancel) Marks theEventas cancelled or not.voidsetItemUseTime(long itemUseTime) Changes the item usage duration.Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface EntityInstanceEvent
getInstanceMethods inherited from interface PlayerEvent
getEntity
-
Constructor Details
-
PlayerUseItemEvent
-
-
Method Details
-
getHand
-
getItemStack
Gets the item which has been used.- Specified by:
getItemStackin interfaceItemEvent- Returns:
- the item
-
getItemUseTime
public long getItemUseTime()Gets the item usage duration. After this amount of milliseconds, the animation will stop automatically andPlayerFinishItemUseEventis called.- Returns:
- the item use time
-
setItemUseTime
public void setItemUseTime(long itemUseTime) Changes the item usage duration.- Parameters:
itemUseTime- the new item use time
-
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
-