public static enum Uploader.Cursor extends java.lang.Enum<Uploader.Cursor>
Uploader.setButtonCursor(Cursor) method. The button cursor
is used to define what type of mouse cursor is displayed when hovering over the
uploader button.| Enum Constant and Description |
|---|
ARROW
Show the cursor as an arrow when the user hovers over the button.
|
HAND
Show the cursor as a hand when the user hovers over the button.
|
| Modifier and Type | Method and Description |
|---|---|
int |
toInt() |
static Uploader.Cursor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Uploader.Cursor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Uploader.Cursor ARROW
public static final Uploader.Cursor HAND
public static Uploader.Cursor[] values()
for (Uploader.Cursor c : Uploader.Cursor.values()) System.out.println(c);
public static Uploader.Cursor 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 nullpublic int toInt()