Enum Constant Summary
Enum Constants
Makes the cursor visible and confined to the content area of the window.
Makes the cursor invisible and locks its position, but still provides virtual cursor movement.
Makes the cursor invisible when it is hovering over the content area of the window.
Makes the cursor visible and makes the cursor behave normally.
Method Summary
All Methods Static Methods Instance Methods Concrete Methods
int
Returns the integer value of this instance.
static boolean
Checks if a given value is a valid value for a cursor type.
Parses a given value to a cursor type
Returns the enum constant of this class with the specified name.
Returns an array containing the constants of this enum class, in
the order they are declared.
Methods inherited from class java.lang.Enum
clone , compareTo , describeConstable , equals , finalize , getDeclaringClass , hashCode , name , ordinal , toString , valueOf
Enum Constant Details
NORMAL
Makes the cursor visible and makes the cursor behave normally.
HIDDEN
Makes the cursor invisible when it is hovering over the content area of the window.
DISABLED
Makes the cursor invisible and locks its position, but still provides virtual cursor movement.
CAPTURED
Makes the cursor visible and confined to the content area of the window.
Method Details
values
Returns an array containing the constants of this enum class, in
the order they are declared.
Returns:
an array containing the constants of this enum class, in the order they are declared
valueOf
Returns the enum constant of this class with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this class. (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 class has no constant with the specified name
NullPointerException - if the argument is null
getValue
public int getValue ()
Description copied from interface: IntEnum
Returns the integer value of this instance.
Specified by:
getValue in interface IntEnum
Returns:
The integer value.
isValid
public static boolean isValid (int value)
Checks if a given value is a valid value for a cursor type.
Parameters:
value - Value to test
Returns:
True if the value is a valid value
parse
Parses a given value to a cursor type
Parameters:
value - Value
Returns:
Cursor mode