|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Cursor>
com.smartgwt.client.types.Cursor
public enum Cursor
You can use whatever cursors are valid for your deployment platforms, but keep in mind that visual representation may vary by browser and OS.
Enum Constant Summary | |
---|---|
ALL_SCROLL
|
|
ARROW
|
|
AUTO
Use the default cursor for this element type in this browser/OS |
|
COL_RESIZE
Use the column resize cursor (horizontal double-tipped arrow) |
|
CROSSHAIR
Use the 'crosshair' ( + ) cursor. |
|
DEFAULT
Use the default arrow cursor for this browser/OS. |
|
E_RESIZE
Use the "east resize" cursor. |
|
HAND
Use the hand cursor. |
|
HELP
Use the 'help' cursor. |
|
MOVE
Use the "move" (crosshairs) cursor. |
|
N_RESIZE
Use the "north resize" cursor. |
|
NE_RESIZE
Use the "north-east resize" cursor. |
|
NOT_ALLOWED
Use the "not-allowed" cursor. |
|
NW_RESIZE
Use the "north-west resize" cursor. |
|
POINTER
Use the normal hand pointer that appears when you hover over a link |
|
ROW_RESIZE
Use the row resize cursor (vertical double-tipped arrow) |
|
S_RESIZE
Use the "south resize" cursor. |
|
SE_RESIZE
Use the "south-east resize" cursor. |
|
SW_RESIZE
Use the "south-west resize" cursor. |
|
TEXT
Use the 'text' (i-beam) cursor. |
|
W_RESIZE
Use the "west resize" cursor. |
|
WAIT
Use the wait cursor. |
Method Summary | |
---|---|
String |
getValue()
|
static Cursor |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Cursor[] |
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 Cursor ALL_SCROLL
public static final Cursor ARROW
public static final Cursor DEFAULT
public static final Cursor AUTO
public static final Cursor WAIT
public static final Cursor HAND
public static final Cursor MOVE
public static final Cursor HELP
public static final Cursor TEXT
public static final Cursor CROSSHAIR
public static final Cursor COL_RESIZE
public static final Cursor POINTER
public static final Cursor ROW_RESIZE
public static final Cursor E_RESIZE
public static final Cursor W_RESIZE
public static final Cursor N_RESIZE
public static final Cursor S_RESIZE
public static final Cursor SE_RESIZE
public static final Cursor NE_RESIZE
public static final Cursor NW_RESIZE
public static final Cursor SW_RESIZE
public static final Cursor NOT_ALLOWED
Method Detail |
---|
public static Cursor[] values()
for (Cursor c : Cursor.values()) System.out.println(c);
public static Cursor 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 |