Enum Class InventoryAction

java.lang.Object
java.lang.Enum<InventoryAction>
org.bukkit.event.inventory.InventoryAction
All Implemented Interfaces:
Serializable, Comparable<InventoryAction>, Constable

public enum InventoryAction extends Enum<InventoryAction>
An estimation of what the result will be.
  • Enum Constant Details Link icon

    • NOTHING Link icon

      public static final InventoryAction NOTHING
      Nothing will happen from the click.

      There may be cases where nothing will happen and this is value is not provided, but it is guaranteed that this value is accurate when given.

    • PICKUP_ALL Link icon

      public static final InventoryAction PICKUP_ALL
      All of the items on the clicked slot are moved to the cursor.
    • PICKUP_SOME Link icon

      public static final InventoryAction PICKUP_SOME
      Some of the items on the clicked slot are moved to the cursor.
    • PICKUP_HALF Link icon

      public static final InventoryAction PICKUP_HALF
      Half of the items on the clicked slot are moved to the cursor.
    • PICKUP_ONE Link icon

      public static final InventoryAction PICKUP_ONE
      One of the items on the clicked slot are moved to the cursor.
    • PLACE_ALL Link icon

      public static final InventoryAction PLACE_ALL
      All of the items on the cursor are moved to the clicked slot.
    • PLACE_SOME Link icon

      public static final InventoryAction PLACE_SOME
      Some of the items from the cursor are moved to the clicked slot (usually up to the max stack size).
    • PLACE_ONE Link icon

      public static final InventoryAction PLACE_ONE
      A single item from the cursor is moved to the clicked slot.
    • SWAP_WITH_CURSOR Link icon

      public static final InventoryAction SWAP_WITH_CURSOR
      The clicked item and the cursor are exchanged.
    • DROP_ALL_CURSOR Link icon

      public static final InventoryAction DROP_ALL_CURSOR
      The entire cursor item is dropped.
    • DROP_ONE_CURSOR Link icon

      public static final InventoryAction DROP_ONE_CURSOR
      One item is dropped from the cursor.
    • DROP_ALL_SLOT Link icon

      public static final InventoryAction DROP_ALL_SLOT
      The entire clicked slot is dropped.
    • DROP_ONE_SLOT Link icon

      public static final InventoryAction DROP_ONE_SLOT
      One item is dropped from the clicked slot.
    • MOVE_TO_OTHER_INVENTORY Link icon

      public static final InventoryAction MOVE_TO_OTHER_INVENTORY
      The item is moved to the opposite inventory if a space is found.
    • HOTBAR_MOVE_AND_READD Link icon

      public static final InventoryAction HOTBAR_MOVE_AND_READD
      The clicked item is moved to the hotbar, and the item currently there is re-added to the player's inventory. The hotbar includes the player's off hand.
    • HOTBAR_SWAP Link icon

      public static final InventoryAction HOTBAR_SWAP
      The clicked slot and the picked hotbar slot are swapped. The hotbar includes the player's off hand.
    • CLONE_STACK Link icon

      public static final InventoryAction CLONE_STACK
      A max-size stack of the clicked item is put on the cursor.
    • COLLECT_TO_CURSOR Link icon

      public static final InventoryAction COLLECT_TO_CURSOR
      The inventory is searched for the same material, and they are put on the cursor up to Material.getMaxStackSize().
    • UNKNOWN Link icon

      public static final InventoryAction UNKNOWN
      An unrecognized ClickType.
  • Method Details Link icon

    • values Link icon

      public static InventoryAction[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf Link icon

      public static InventoryAction valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null