public enum MoveToHotbarParam extends Enum<MoveToHotbarParam> implements WindowActionParam
| Enum Constant and Description |
|---|
SLOT_1 |
SLOT_2 |
SLOT_3 |
SLOT_4 |
SLOT_5 |
SLOT_6 |
SLOT_7 |
SLOT_8 |
SLOT_9 |
| Modifier and Type | Method and Description |
|---|---|
static MoveToHotbarParam |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MoveToHotbarParam[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MoveToHotbarParam SLOT_1
public static final MoveToHotbarParam SLOT_2
public static final MoveToHotbarParam SLOT_3
public static final MoveToHotbarParam SLOT_4
public static final MoveToHotbarParam SLOT_5
public static final MoveToHotbarParam SLOT_6
public static final MoveToHotbarParam SLOT_7
public static final MoveToHotbarParam SLOT_8
public static final MoveToHotbarParam SLOT_9
public static MoveToHotbarParam[] values()
for (MoveToHotbarParam c : MoveToHotbarParam.values()) System.out.println(c);
public static MoveToHotbarParam 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.