public enum CharacterHeightType extends Enum<CharacterHeightType>
Java class for CharacterHeightType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CharacterHeightType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="SingleHeight"/>
<enumeration value="DoubleHeight"/>
<enumeration value="HalfHeight"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DOUBLE_HEIGHT
Double height character height type.
|
HALF_HEIGHT
Half height character height type.
|
SINGLE_HEIGHT
Single height character height type.
|
| Modifier and Type | Method and Description |
|---|---|
static CharacterHeightType |
fromValue(String v)
From value character height type.
|
String |
value()
Value string.
|
static CharacterHeightType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CharacterHeightType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CharacterHeightType SINGLE_HEIGHT
public static final CharacterHeightType DOUBLE_HEIGHT
public static final CharacterHeightType HALF_HEIGHT
public static CharacterHeightType[] values()
for (CharacterHeightType c : CharacterHeightType.values()) System.out.println(c);
public static CharacterHeightType 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 CharacterHeightType fromValue(String v)
v - the vCopyright © 2022. All rights reserved.