public enum InventoryAction extends Enum<InventoryAction>
列挙型定数と説明 |
---|
CLONE_STACK
A max-size stack of the clicked item is put on the cursor.
|
COLLECT_TO_CURSOR
The inventory is searched for the same material, and they are put on
the cursor up to
Material.getMaxStackSize() . |
DROP_ALL_CURSOR
The entire cursor item is dropped.
|
DROP_ALL_SLOT
The entire clicked slot is dropped.
|
DROP_ONE_CURSOR
One item is dropped from the cursor.
|
DROP_ONE_SLOT
One item is dropped from the clicked slot.
|
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.
|
HOTBAR_SWAP
The clicked slot and the picked hotbar slot are swapped.
|
MOVE_TO_OTHER_INVENTORY
The item is moved to the opposite inventory if a space is found.
|
NOTHING
Nothing will happen from the click.
|
PICKUP_ALL
All of the items on the clicked slot are moved to the cursor.
|
PICKUP_HALF
Half of the items on the clicked slot are moved to the cursor.
|
PICKUP_ONE
One of the items on the clicked slot are moved to the cursor.
|
PICKUP_SOME
Some of the items on the clicked slot are moved to the cursor.
|
PLACE_ALL
All of the items on the cursor are moved to the clicked slot.
|
PLACE_ONE
A single item from the cursor is moved to the clicked slot.
|
PLACE_SOME
Some of the items from the cursor are moved to the clicked slot
(usually up to the max stack size).
|
SWAP_WITH_CURSOR
The clicked item and the cursor are exchanged.
|
UNKNOWN
An unrecognized ClickType.
|
修飾子とタイプ | メソッドと説明 |
---|---|
static InventoryAction |
valueOf(String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static InventoryAction[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final InventoryAction NOTHING
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.
public static final InventoryAction PICKUP_ALL
public static final InventoryAction PICKUP_SOME
public static final InventoryAction PICKUP_HALF
public static final InventoryAction PICKUP_ONE
public static final InventoryAction PLACE_ALL
public static final InventoryAction PLACE_SOME
public static final InventoryAction PLACE_ONE
public static final InventoryAction SWAP_WITH_CURSOR
public static final InventoryAction DROP_ALL_CURSOR
public static final InventoryAction DROP_ONE_CURSOR
public static final InventoryAction DROP_ALL_SLOT
public static final InventoryAction DROP_ONE_SLOT
public static final InventoryAction MOVE_TO_OTHER_INVENTORY
public static final InventoryAction HOTBAR_MOVE_AND_READD
public static final InventoryAction HOTBAR_SWAP
public static final InventoryAction CLONE_STACK
public static final InventoryAction COLLECT_TO_CURSOR
Material.getMaxStackSize()
.public static final InventoryAction UNKNOWN
public static InventoryAction[] values()
for(InventoryAction c: InventoryAction.values()) System.out.println(c);
public static InventoryAction valueOf(String name)
name
- 返される列挙型定数の名前。IllegalArgumentException
- この列挙型に、指定した名前の定数がない場合NullPointerException
- 引数がnullの場合Copyright © 2016. All rights reserved.