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
ConstructorsConstructorDescriptionPlayerChangeHeldSlotEvent
(@NotNull Player player, byte oldSlot, byte newSlot) -
Method Summary
Modifier and TypeMethodDescriptionGets the ItemStack in the slot the player will holdGets the ItemStack in the player's currently held slotbyte
Gets the slot which the player will hold.int
Gets the slot number that the player is currently holding@NotNull Player
Gets the player.byte
getSlot()
Deprecated, for removal: This API element is subject to removal in a future version.boolean
Gets if theEvent
should be cancelled or not.void
setCancelled
(boolean cancel) Marks theEvent
as cancelled or not.void
setNewSlot
(byte slot) Changes the final held slot of the player.void
setSlot
(byte slot) Deprecated, for removal: This API element is subject to removal in a future version.UsesetNewSlot(byte)
insteadMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface net.minestom.server.event.trait.EntityInstanceEvent
getInstance
Methods inherited from interface net.minestom.server.event.trait.PlayerEvent
getEntity
-
Constructor Details
-
PlayerChangeHeldSlotEvent
-
-
Method Details
-
getSlot
Deprecated, for removal: This API element is subject to removal in a future version.UsegetNewSlot()
instead.Gets the slot which the player will hold.- Returns:
- the future slot
-
getOldSlot
public int getOldSlot()Gets the slot number that the player is currently holding- Returns:
- The slot index that the player currently is holding
-
getNewSlot
public byte getNewSlot()Gets the slot which the player will hold.- Returns:
- the future slot
-
setSlot
Deprecated, for removal: This API element is subject to removal in a future version.UsesetNewSlot(byte)
insteadChanges the final held slot of the player.- Parameters:
slot
- the new held slot- Throws:
IllegalArgumentException
- ifslot
is not between 0 and 8
-
setNewSlot
public void setNewSlot(byte slot) Changes the final held slot of the player.- Parameters:
slot
- the new held slot- Throws:
IllegalArgumentException
- ifslot
is not between 0 and 8
-
getItemInOldSlot
Gets the ItemStack in the player's currently held slot- Returns:
- The ItemStack in the player's currently held slot
-
getItemInNewSlot
Gets the ItemStack in the slot the player will hold- Returns:
- The ItemStack in the final held slot of the player
-
isCancelled
public boolean isCancelled()Description copied from interface:CancellableEvent
Gets if theEvent
should be cancelled or not.- Specified by:
isCancelled
in interfaceCancellableEvent
- Returns:
- true if the event should be cancelled
-
setCancelled
public void setCancelled(boolean cancel) Description copied from interface:CancellableEvent
Marks theEvent
as cancelled or not.- Specified by:
setCancelled
in interfaceCancellableEvent
- Parameters:
cancel
- true if the event should be cancelled, false otherwise
-
getPlayer
Description copied from interface:PlayerEvent
Gets the player.- Specified by:
getPlayer
in interfacePlayerEvent
- Returns:
- the player
-
getNewSlot()
instead.