public enum DropItemParam extends Enum<DropItemParam> implements WindowActionParam
| Enum Constant and Description |
|---|
DROP_FROM_SELECTED |
DROP_SELECTED_STACK |
LEFT_CLICK_OUTSIDE_NOT_HOLDING |
RIGHT_CLICK_OUTSIDE_NOT_HOLDING |
| Modifier and Type | Method and Description |
|---|---|
static DropItemParam |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DropItemParam[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DropItemParam DROP_FROM_SELECTED
public static final DropItemParam DROP_SELECTED_STACK
public static final DropItemParam LEFT_CLICK_OUTSIDE_NOT_HOLDING
public static final DropItemParam RIGHT_CLICK_OUTSIDE_NOT_HOLDING
public static DropItemParam[] values()
for (DropItemParam c : DropItemParam.values()) System.out.println(c);
public static DropItemParam 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.