|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DragDataAction>
com.smartgwt.client.types.DragDataAction
public enum DragDataAction
What do we do with data that's been dropped into another list?
Enum Constant Summary | |
---|---|
COPY
Copy the data leaving the original in our list. |
|
MOVE
Remove the data from this list so it can be moved into the other list. |
|
NONE
Don't do anything, resulting in the same data being in both lists. |
Method Summary | |
---|---|
java.lang.String |
getValue()
|
static DragDataAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static DragDataAction[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final DragDataAction NONE
public static final DragDataAction COPY
public static final DragDataAction MOVE
Method Detail |
---|
public static final DragDataAction[] values()
for(DragDataAction c : DragDataAction.values()) System.out.println(c);
public static DragDataAction 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 namepublic java.lang.String getValue()
getValue
in interface ValueEnum
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |