public static enum Style.EBoxAlignment extends Enum<Style.EBoxAlignment>
Enum Constant and Description |
---|
BBASELINE |
BCENTER |
BEND |
BSTART |
BSTRETCH |
Modifier and Type | Method and Description |
---|---|
static Style.EBoxAlignment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Style.EBoxAlignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Style.EBoxAlignment BSTRETCH
public static final Style.EBoxAlignment BSTART
public static final Style.EBoxAlignment BCENTER
public static final Style.EBoxAlignment BEND
public static final Style.EBoxAlignment BBASELINE
public static Style.EBoxAlignment[] values()
for (Style.EBoxAlignment c : Style.EBoxAlignment.values()) System.out.println(c);
public static Style.EBoxAlignment 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