org.apache.pivot.wtk
Enum Cursor

java.lang.Object
  extended by java.lang.Enum<Cursor>
      extended by org.apache.pivot.wtk.Cursor
All Implemented Interfaces:
Serializable, Comparable<Cursor>

public enum Cursor
extends Enum<Cursor>

Enumeration defining the supported mouse cursor types.


Enum Constant Summary
CROSSHAIR
           
DEFAULT
           
HAND
           
MOVE
           
RESIZE_EAST
           
RESIZE_NORTH
           
RESIZE_NORTH_EAST
           
RESIZE_NORTH_WEST
           
RESIZE_SOUTH
           
RESIZE_SOUTH_EAST
           
RESIZE_SOUTH_WEST
           
RESIZE_WEST
           
TEXT
           
WAIT
           
 
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.
 
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

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
Method Detail

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