public static enum Mouse.CursorStyle extends java.lang.Enum<Mouse.CursorStyle>
| Enum Constant and Description |
|---|
HUGE
The big cursor style
|
NORMAL
The default cursor style
|
| Modifier and Type | Method and Description |
|---|---|
static Mouse.CursorStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Mouse.CursorStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Mouse.CursorStyle NORMAL
public static final Mouse.CursorStyle HUGE
public static Mouse.CursorStyle[] values()
for (Mouse.CursorStyle c : Mouse.CursorStyle.values()) System.out.println(c);
public static Mouse.CursorStyle 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 namejava.lang.NullPointerException - if the argument is null