public enum BaselinePosition extends Enum<BaselinePosition>
Enum Constant and Description |
---|
BOTTOM
The bars are aligned to be even along the bottom.
|
TOP
The bars are aligned to be even along the top.
|
Modifier and Type | Method and Description |
---|---|
static BaselinePosition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BaselinePosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BaselinePosition TOP
public static final BaselinePosition BOTTOM
public static BaselinePosition[] values()
for (BaselinePosition c : BaselinePosition.values()) System.out.println(c);
public static BaselinePosition 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 null
© 2016 ZIH Corp. All Rights Reserved.