public enum WindowAction extends Enum<WindowAction>
| Enum Constant and Description |
|---|
CLICK_ITEM |
CREATIVE_GRAB_MAX_STACK |
DROP_ITEM |
FILL_STACK |
MOVE_TO_HOTBAR_SLOT |
SHIFT_CLICK_ITEM |
SPREAD_ITEM |
| Modifier and Type | Method and Description |
|---|---|
static WindowAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WindowAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WindowAction CLICK_ITEM
public static final WindowAction SHIFT_CLICK_ITEM
public static final WindowAction MOVE_TO_HOTBAR_SLOT
public static final WindowAction CREATIVE_GRAB_MAX_STACK
public static final WindowAction DROP_ITEM
public static final WindowAction SPREAD_ITEM
public static final WindowAction FILL_STACK
public static WindowAction[] values()
for (WindowAction c : WindowAction.values()) System.out.println(c);
public static WindowAction valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.