public static enum AbstractAreaSelectionManager.ClickAction extends Enum<AbstractAreaSelectionManager.ClickAction>
| Enum Constant and Description |
|---|
LEFT_CLICK_BLOCK
Left clicked on block
|
RIGHT_CLICK_BLOCK
Right clicked on block
|
| Modifier and Type | Method and Description |
|---|---|
static AbstractAreaSelectionManager.ClickAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractAreaSelectionManager.ClickAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractAreaSelectionManager.ClickAction LEFT_CLICK_BLOCK
public static final AbstractAreaSelectionManager.ClickAction RIGHT_CLICK_BLOCK
public static AbstractAreaSelectionManager.ClickAction[] values()
for (AbstractAreaSelectionManager.ClickAction c : AbstractAreaSelectionManager.ClickAction.values()) System.out.println(c);
public static AbstractAreaSelectionManager.ClickAction 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 null