public static enum AbstractCanvas.Cursors extends Enum<AbstractCanvas.Cursors>
| Enum Constant and Description |
|---|
AUTO |
COL_RESIZE |
CROSSHAIR |
DEFAULT |
MOVE |
NOT_ALLOWED |
POINTER |
ROW_RESIZE |
TEXT |
WAIT |
| Modifier and Type | Method and Description |
|---|---|
static AbstractCanvas.Cursors |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractCanvas.Cursors[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractCanvas.Cursors DEFAULT
public static final AbstractCanvas.Cursors AUTO
public static final AbstractCanvas.Cursors MOVE
public static final AbstractCanvas.Cursors POINTER
public static final AbstractCanvas.Cursors TEXT
public static final AbstractCanvas.Cursors NOT_ALLOWED
public static final AbstractCanvas.Cursors WAIT
public static final AbstractCanvas.Cursors CROSSHAIR
public static final AbstractCanvas.Cursors ROW_RESIZE
public static final AbstractCanvas.Cursors COL_RESIZE
public static AbstractCanvas.Cursors[] values()
for (AbstractCanvas.Cursors c : AbstractCanvas.Cursors.values()) System.out.println(c);
public static AbstractCanvas.Cursors valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2001–2019 JBoss by Red Hat. All rights reserved.