|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DragTrackerMode>
com.smartgwt.client.types.DragTrackerMode
public enum DragTrackerMode
When records are being dragged from within a ListGrid, what sort of drag-tracker should be displayed?
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
String |
getValue()
|
static DragTrackerMode |
valueOf(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. |
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 |
---|
public static final DragTrackerMode NONE
public static final DragTrackerMode ICON
com.smartgwt.client.widgets.grid.ListGrid#getDragTrackerIcon
public static final DragTrackerMode TITLE
ListGrid.getDragTrackerTitle(com.smartgwt.client.widgets.grid.ListGridRecord, int)
public static final DragTrackerMode RECORD
Method Detail |
---|
public static DragTrackerMode[] values()
for (DragTrackerMode c : DragTrackerMode.values()) System.out.println(c);
public static DragTrackerMode valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String getValue()
getValue
in interface ValueEnum
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |