public static enum SeparatorWidget.Orientation extends java.lang.Enum<SeparatorWidget.Orientation>
| Enum Constant | Description |
|---|---|
HORIZONTAL |
|
VERTICAL |
| Modifier and Type | Method | Description |
|---|---|---|
static SeparatorWidget.Orientation |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static SeparatorWidget.Orientation[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SeparatorWidget.Orientation HORIZONTAL
public static final SeparatorWidget.Orientation VERTICAL
public static SeparatorWidget.Orientation[] values()
for (SeparatorWidget.Orientation c : SeparatorWidget.Orientation.values()) System.out.println(c);
public static SeparatorWidget.Orientation 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 nullBuilt on April 24 2018. | Portions Copyright 1997-2018 Oracle. All rights reserved.