|
|||||||||
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 | |
---|---|
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'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 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 final 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 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 |