public enum STTextFontAlignType extends Enum<STTextFontAlignType>
Java class for ST_TextFontAlignType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_TextFontAlignType">
<restriction base="{http://www.w3.org/2001/XMLSchema}token">
<enumeration value="auto"/>
<enumeration value="t"/>
<enumeration value="ctr"/>
<enumeration value="base"/>
<enumeration value="b"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
AUTO
Font Alignment Enum ( Automatic )
|
B
Font Alignment Enum ( Bottom )
|
BASE
Font Alignment Enum ( Baseline )
|
CTR
Font Alignment Enum ( Center )
|
T
Font Alignment Enum ( Top )
|
| Modifier and Type | Method and Description |
|---|---|
static STTextFontAlignType |
fromValue(String v) |
String |
value() |
static STTextFontAlignType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STTextFontAlignType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STTextFontAlignType AUTO
public static final STTextFontAlignType T
public static final STTextFontAlignType CTR
public static final STTextFontAlignType BASE
public static final STTextFontAlignType B
public static STTextFontAlignType[] values()
for (STTextFontAlignType c : STTextFontAlignType.values()) System.out.println(c);
public static STTextFontAlignType 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 nullpublic String value()
public static STTextFontAlignType fromValue(String v)
Copyright © 2007-2022. All Rights Reserved.