org.apache.pivot.wtk
Enum Cursor
java.lang.Object
java.lang.Enum<Cursor>
org.apache.pivot.wtk.Cursor
- All Implemented Interfaces:
- Serializable, Comparable<Cursor>
public enum Cursor
- extends Enum<Cursor>
Enumeration defining the supported mouse cursor types.
Method Summary |
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. |
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(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:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null