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
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "none".
public static final DragTrackerMode ICON
ListGrid.getDragTrackerIcon()
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "icon".
public static final DragTrackerMode TITLE
ListGrid.getDragTrackerTitle()
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "title".
public static final DragTrackerMode RECORD
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "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