com.smartgwt.client.types
Enum DragDataAction

java.lang.Object
  extended by java.lang.Enum<DragDataAction>
      extended by com.smartgwt.client.types.DragDataAction
All Implemented Interfaces:
ValueEnum, Serializable, Comparable<DragDataAction>

public enum DragDataAction
extends Enum<DragDataAction>
implements ValueEnum

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
 String getValue()
           
static DragDataAction valueOf(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 are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NONE

public static final DragDataAction NONE
Don't do anything, resulting in the same data being in both lists.


COPY

public static final DragDataAction COPY
Copy the data leaving the original in our list.


MOVE

public static final DragDataAction MOVE
Remove the data from this list so it can be moved into the other list.

Method Detail

values

public static DragDataAction[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (DragDataAction c : DragDataAction.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static DragDataAction valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

getValue

public String getValue()
Specified by:
getValue in interface ValueEnum