public static enum LassoLayerEvent.ID extends Enum<LassoLayerEvent.ID>
Enum Constant and Description |
---|
LASSO_FINISHED
An enum value used to indicate that a lasso operation has finished.
|
LASSO_ONGOING
An enum value used to indicate that a lasso operation is currently
going on.
|
LASSO_STARTED
An enum value used to indicate that a lasso operation has started.
|
Modifier and Type | Method and Description |
---|---|
static LassoLayerEvent.ID |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LassoLayerEvent.ID[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LassoLayerEvent.ID LASSO_STARTED
public static final LassoLayerEvent.ID LASSO_FINISHED
public static final LassoLayerEvent.ID LASSO_ONGOING
public static LassoLayerEvent.ID[] values()
for (LassoLayerEvent.ID c : LassoLayerEvent.ID.values()) System.out.println(c);
public static LassoLayerEvent.ID 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 © 2006–2020 Dirk Lemmermann Software & Consulting. All rights reserved.