Package org.bukkit.event.player
Class PlayerArmorStandManipulateEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.player.PlayerEvent
org.bukkit.event.player.PlayerInteractEntityEvent
org.bukkit.event.player.PlayerArmorStandManipulateEvent
- All Implemented Interfaces:
Cancellable
Called when a player interacts with an armor stand and will either swap, retrieve or place an item.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.bukkit.event.Event
Event.Result
-
Field Summary
Fields inherited from class org.bukkit.event.player.PlayerInteractEntityEvent
clickedEntity
Fields inherited from class org.bukkit.event.player.PlayerEvent
player
-
Constructor Summary
ConstructorDescriptionPlayerArmorStandManipulateEvent(Player who, ArmorStand clickedEntity, ItemStack playerItem, ItemStack armorStandItem, EquipmentSlot slot)
-
Method Summary
Modifier and TypeMethodDescriptionReturns the item held by the armor stand.static HandlerList
Returns the item held by the player.Gets the entity that was right-clicked by the player.getSlot()
Returns the raw item slot of the armor stand in this event.Methods inherited from class org.bukkit.event.player.PlayerInteractEntityEvent
getHand, isCancelled, setCancelled
Methods inherited from class org.bukkit.event.player.PlayerEvent
getPlayer
Methods inherited from class org.bukkit.event.Event
getEventName, isAsynchronous
-
Constructor Details
-
PlayerArmorStandManipulateEvent
public PlayerArmorStandManipulateEvent(@NotNull Player who, @NotNull ArmorStand clickedEntity, @NotNull ItemStack playerItem, @NotNull ItemStack armorStandItem, @NotNull EquipmentSlot slot)
-
-
Method Details
-
getPlayerItem
Returns the item held by the player. If this Item is null and the armor stand Item is also null, there will be no transaction between the player and the armor stand. If the Player's item is null, but the armor stand item is not then the player will obtain the armor stand item. In the case that the Player's item is not null, but the armor stand item is null, the players item will be placed on the armor stand. If both items are not null, the items will be swapped. In the case that the event is cancelled the original items will remain the same.- Returns:
- the item held by the player.
-
getArmorStandItem
Returns the item held by the armor stand. If this Item is null and the player's Item is also null, there will be no transaction between the player and the armor stand. If the Player's item is null, but the armor stand item is not then the player will obtain the armor stand item. In the case that the Player's item is not null, but the armor stand item is null, the players item will be placed on the armor stand. If both items are not null, the items will be swapped. In the case that the event is cancelled the original items will remain the same.- Returns:
- the item held by the armor stand.
-
getSlot
Returns the raw item slot of the armor stand in this event.- Returns:
- the index of the item obtained or placed of the armor stand.
-
getRightClicked
Description copied from class:PlayerInteractEntityEvent
Gets the entity that was right-clicked by the player.- Overrides:
getRightClicked
in classPlayerInteractEntityEvent
- Returns:
- entity right clicked by player
-
getHandlers
- Overrides:
getHandlers
in classPlayerInteractEntityEvent
-
getHandlerList
-