public enum CharacterHeightEnumeration extends Enum<CharacterHeightEnumeration>
Java class for CharacterHeightEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CharacterHeightEnumeration">
<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 |
HALF_HEIGHT |
SINGLE_HEIGHT |
| Modifier and Type | Method and Description |
|---|---|
static CharacterHeightEnumeration |
fromValue(String v) |
String |
value() |
static CharacterHeightEnumeration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CharacterHeightEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CharacterHeightEnumeration SINGLE_HEIGHT
public static final CharacterHeightEnumeration DOUBLE_HEIGHT
public static final CharacterHeightEnumeration HALF_HEIGHT
public static CharacterHeightEnumeration[] values()
for (CharacterHeightEnumeration c : CharacterHeightEnumeration.values()) System.out.println(c);
public static CharacterHeightEnumeration 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 CharacterHeightEnumeration fromValue(String v)
Copyright © 2018. All rights reserved.