public static enum Form.Utils extends Enum<Form.Utils>
| Modifier and Type | Method and Description |
|---|---|
static Stage |
createWrappedStage(Stage input,
Func<?>... args) |
static Form.Utils |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Form.Utils[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static Form.Utils[] values()
for (Form.Utils c : Form.Utils.values()) System.out.println(c);
public static Form.Utils 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 © 2017. All rights reserved.