public enum Click extends Enum<Click>
| Enum Constant and Description |
|---|
DROP_ALL |
DROP_ONE |
LEFT |
LEFT_OUTSIDE |
LEFT_SHIFT |
RIGHT |
RIGHT_OUTSIDE |
| Modifier and Type | Field and Description |
|---|---|
com.github.steveice10.mc.protocol.data.game.window.WindowActionParam |
actionParam |
static int |
OUTSIDE_SLOT |
com.github.steveice10.mc.protocol.data.game.window.WindowAction |
windowAction |
| Modifier and Type | Method and Description |
|---|---|
static Click |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Click[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Click LEFT
public static final Click RIGHT
public static final Click LEFT_SHIFT
public static final Click DROP_ONE
public static final Click DROP_ALL
public static final Click LEFT_OUTSIDE
public static final Click RIGHT_OUTSIDE
public static final int OUTSIDE_SLOT
public final com.github.steveice10.mc.protocol.data.game.window.WindowAction windowAction
public final com.github.steveice10.mc.protocol.data.game.window.WindowActionParam actionParam
public static Click[] values()
for (Click c : Click.values()) System.out.println(c);
public static Click 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 © 2021 GeyserMC. All rights reserved.