pivot.wtk
Enum Cursor
java.lang.Object
java.lang.Enum<Cursor>
pivot.wtk.Cursor
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<Cursor>
public enum Cursor
- extends java.lang.Enum<Cursor>
Enumeration defining the supported mouse cursor types.
- Author:
- gbrown
Method Summary |
static Cursor |
decode(java.lang.String value)
|
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 |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
DEFAULT
public static final Cursor DEFAULT
HAND
public static final Cursor HAND
TEXT
public static final Cursor TEXT
WAIT
public static final Cursor WAIT
CROSSHAIR
public static final Cursor CROSSHAIR
MOVE
public static final Cursor MOVE
RESIZE_NORTH
public static final Cursor RESIZE_NORTH
RESIZE_SOUTH
public static final Cursor RESIZE_SOUTH
RESIZE_EAST
public static final Cursor RESIZE_EAST
RESIZE_WEST
public static final Cursor RESIZE_WEST
RESIZE_NORTH_EAST
public static final Cursor RESIZE_NORTH_EAST
RESIZE_NORTH_WEST
public static final Cursor RESIZE_NORTH_WEST
RESIZE_SOUTH_EAST
public static final Cursor RESIZE_SOUTH_EAST
RESIZE_SOUTH_WEST
public static final Cursor RESIZE_SOUTH_WEST
values
public static Cursor[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (Cursor c : Cursor.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Cursor valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
decode
public static Cursor decode(java.lang.String value)