public static enum Pane.Priority extends Enum<Pane.Priority>
EventPriority system| Enum Constant and Description |
|---|
HIGH
A higher priority, higher than default
|
HIGHEST
The highest priority for production use
|
LOW
A low priority, lower than default
|
LOWEST
The lowest priority, will be rendered first
|
MONITOR
The highest priority, will always be called last, should not be used for production code
|
NORMAL
A normal priority, the default
|
| Modifier and Type | Method and Description |
|---|---|
static Pane.Priority |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Pane.Priority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Pane.Priority LOWEST
public static final Pane.Priority LOW
public static final Pane.Priority NORMAL
public static final Pane.Priority HIGH
public static final Pane.Priority HIGHEST
public static final Pane.Priority MONITOR
public static Pane.Priority[] values()
for (Pane.Priority c : Pane.Priority.values()) System.out.println(c);
public static Pane.Priority 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 © 2019. All rights reserved.