public static enum Style.EBoxOrient extends Enum<Style.EBoxOrient>
| Enum Constant and Description |
|---|
HORIZONTAL |
VERTICAL |
| Modifier and Type | Method and Description |
|---|---|
static Style.EBoxOrient |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Style.EBoxOrient[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Style.EBoxOrient HORIZONTAL
public static final Style.EBoxOrient VERTICAL
public static Style.EBoxOrient[] values()
for (Style.EBoxOrient c : Style.EBoxOrient.values()) System.out.println(c);
public static Style.EBoxOrient 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 nullRevision 4.0.15 / 20220727-0149