|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DragIntersectStyle>
com.smartgwt.client.types.DragIntersectStyle
public enum DragIntersectStyle
Different styles of determining intersection: with mouse or entire rect of target.
Enum Constant Summary | |
---|---|
MOUSE
Look for drop targets that are under the current mouse cursor position. |
|
RECT
Look for drop targets by intersection of the entire rect of the drag target with the droppable target. |
Method Summary | |
---|---|
java.lang.String |
getValue()
|
static DragIntersectStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static DragIntersectStyle[] |
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 DragIntersectStyle MOUSE
public static final DragIntersectStyle RECT
Method Detail |
---|
public static final DragIntersectStyle[] values()
for(DragIntersectStyle c : DragIntersectStyle.values()) System.out.println(c);
public static DragIntersectStyle 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 |