public enum DragTrackerMode extends java.lang.Enum<DragTrackerMode> implements ValueEnum
| Enum Constant and Description |
|---|
ICON
Display an icon to represent the record(s) being dragged.
|
NONE
Don't display a drag tracker at all
|
RECORD
Display the entire record being dragged
|
TITLE
Display a title for the record being dragged.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue() |
static DragTrackerMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DragTrackerMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DragTrackerMode NONE
public static final DragTrackerMode ICON
ListGrid.getDragTrackerIconpublic static final DragTrackerMode TITLE
ListGrid.getDragTrackerTitlepublic static final DragTrackerMode RECORD
public static DragTrackerMode[] values()
for (DragTrackerMode c : DragTrackerMode.values()) System.out.println(c);
public static DragTrackerMode 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 null