|
||||||||||
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.osbcp.css.constants.Cursor
public enum Cursor
Values for the cursor property.
Enum Constant Summary | |
---|---|
AUTO
Default. |
|
CROSSHAIR
The cursor render as a crosshair. |
|
DEFAULT
The default cursor. |
|
E_RESIZE
The cursor indicates that an edge of a box is to be moved right (east). |
|
HELP
The cursor indicates that help is available. |
|
INHERIT
Specifies that the value of the cursor property should be inherited from the parent element. |
|
MOVE
The cursor indicates something that should be moved. |
|
N_RESIZE
The cursor indicates that an edge of a box is to be moved up (north). |
|
NE_RESIZE
The cursor indicates that an edge of a box is to be moved up and right (north/east). |
|
NW_RESIZE
The cursor indicates that an edge of a box is to be moved up and left (north/west). |
|
POINTER
The cursor render as a pointer. |
|
PROGRESS
The cursor indicates that the program is busy (in progress). |
|
S_RESIZE
The cursor indicates that an edge of a box is to be moved down (south). |
|
SE_RESIZE
The cursor indicates that an edge of a box is to be moved down and right (south/east). |
|
SW_RESIZE
The cursor indicates that an edge of a box is to be moved down and left (south/west). |
|
TEXT
The cursor indicates text. |
|
W_RESIZE
The cursor indicates that an edge of a box is to be moved left (west). |
|
WAIT
The cursor indicates that the program is busy. |
Method Summary | |
---|---|
java.lang.String |
toString()
|
static Cursor |
valueOf(java.lang.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 |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Cursor POINTER
public static final Cursor CROSSHAIR
public static final Cursor MOVE
public static final Cursor TEXT
public static final Cursor WAIT
public static final Cursor HELP
public static final Cursor PROGRESS
public static final Cursor DEFAULT
public static final Cursor AUTO
public static final Cursor N_RESIZE
public static final Cursor NE_RESIZE
public static final Cursor NW_RESIZE
public static final Cursor S_RESIZE
public static final Cursor SE_RESIZE
public static final Cursor SW_RESIZE
public static final Cursor W_RESIZE
public static final Cursor E_RESIZE
public static final Cursor INHERIT
Method Detail |
---|
public static Cursor[] values()
for (Cursor c : Cursor.values()) System.out.println(c);
public static Cursor 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 name
java.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<Cursor>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |