Package net.minestom.server.event.player
Class PlayerChangeHeldSlotEvent
java.lang.Object
net.minestom.server.event.player.PlayerChangeHeldSlotEvent
- All Implemented Interfaces:
Event,CancellableEvent,EntityEvent,EntityInstanceEvent,InstanceEvent,PlayerEvent,PlayerInstanceEvent
public class PlayerChangeHeldSlotEvent
extends Object
implements PlayerInstanceEvent, CancellableEvent
Called when a player change his held slot (by pressing 1-9 keys).
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription@NotNull PlayerGets the player.bytegetSlot()Gets the slot which the player will held.booleanGets if theEventshould be cancelled or not.voidsetCancelled(boolean cancel) Marks theEventas cancelled or not.voidsetSlot(byte slot) Changes the final held slot of the player.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
-
PlayerChangeHeldSlotEvent
-
-
Method Details
-
getSlot
public byte getSlot()Gets the slot which the player will held.- Returns:
- the held slot
-
setSlot
public void setSlot(byte slot) Changes the final held slot of the player.- Parameters:
slot- the new held slot- Throws:
IllegalArgumentException- ifslotis not between 0 and 8
-
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
-