public static enum AbstractAreaSelectionManager.ClickResult extends Enum<AbstractAreaSelectionManager.ClickResult>
Enum Constant and Description |
---|
COMPLETE
Two coordinates are ready
|
DIFFERENTWORLD
When two selections are in different worlds
|
LEFTSET
Only left clicked coordinate is ready
|
RIGHTSET
Only right clicked coordinated is ready
|
Modifier and Type | Method and Description |
---|---|
static AbstractAreaSelectionManager.ClickResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractAreaSelectionManager.ClickResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractAreaSelectionManager.ClickResult DIFFERENTWORLD
public static final AbstractAreaSelectionManager.ClickResult COMPLETE
public static final AbstractAreaSelectionManager.ClickResult LEFTSET
public static final AbstractAreaSelectionManager.ClickResult RIGHTSET
public static AbstractAreaSelectionManager.ClickResult[] values()
for (AbstractAreaSelectionManager.ClickResult c : AbstractAreaSelectionManager.ClickResult.values()) System.out.println(c);
public static AbstractAreaSelectionManager.ClickResult 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