public static enum SplitPaneBuilder.Orientation extends Enum<SplitPaneBuilder.Orientation>
| Enum Constant and Description |
|---|
Horizontal |
Vertical |
| Modifier and Type | Method and Description |
|---|---|
static SplitPaneBuilder.Orientation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SplitPaneBuilder.Orientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SplitPaneBuilder.Orientation Vertical
public static final SplitPaneBuilder.Orientation Horizontal
public static SplitPaneBuilder.Orientation[] values()
for (SplitPaneBuilder.Orientation c : SplitPaneBuilder.Orientation.values()) System.out.println(c);
public static SplitPaneBuilder.Orientation 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 © 2021. All Rights Reserved.