public static enum Font.Baseline extends java.lang.Enum<Font.Baseline>
Enum Constant and Description |
---|
ALPHABETIC
The baseline used by alphabetic scripts such as Latin, Cyrillic, and Greek.
|
HANGING
The hanging baseline used in scripts like Tibetan.
|
ICF_BOTTOM_LEFT
The ideographic character face (ICF) bottom edge baseline when writing horizontally, and
the left edge baseline when writing vertically.
|
ICF_TOP_RIGHT
The ideographic character face (ICF) top edge baseline when writing horizontally, and
the right edge baseline when writing vertically.
|
IDEO_BOTTOM_LEFT
The ideographic em-box bottom edge baseline when writing horizontally, and the left edge
baseline when writing vertically.
|
IDEO_TOP_RIGHT
The ideographic em-box top edge baseline when writing horizontally, and the right edge
baseline when writing vertically.
|
MATH
The baseline about which mathematical characters are centered.
|
Modifier and Type | Method and Description |
---|---|
static Font.Baseline |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Font.Baseline[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Font.Baseline ALPHABETIC
public static final Font.Baseline MATH
public static final Font.Baseline HANGING
public static final Font.Baseline IDEO_BOTTOM_LEFT
public static final Font.Baseline IDEO_TOP_RIGHT
public static final Font.Baseline ICF_BOTTOM_LEFT
public static final Font.Baseline ICF_TOP_RIGHT
public static Font.Baseline[] values()
for (Font.Baseline c : Font.Baseline.values()) System.out.println(c);
public static Font.Baseline 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 nullThis documentation was created 2017-01-24 at 21:26 GMT by The aXSL Group and may be freely copied. See license for details.