private static enum LensApplication.DragActions extends java.lang.Enum<LensApplication.DragActions>
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
name |
int |
value |
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
java.lang.String |
toString() |
static LensApplication.DragActions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LensApplication.DragActions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LensApplication.DragActions NONE
public static final LensApplication.DragActions ENTER
public static final LensApplication.DragActions LEAVE
public static final LensApplication.DragActions OVER
public static final LensApplication.DragActions DROP
public static LensApplication.DragActions[] values()
for (LensApplication.DragActions c : LensApplication.DragActions.values()) System.out.println(c);
public static LensApplication.DragActions valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getValue()
public java.lang.String toString()
toString
in class java.lang.Enum<LensApplication.DragActions>