public enum STJc extends Enum<STJc>
Java class for ST_Jc.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_Jc">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="left"/>
<enumeration value="right"/>
<enumeration value="center"/>
<enumeration value="centerGroup"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CENTER
Center (Text)
|
CENTER_GROUP
Centered as Group (Text)
|
LEFT
Left Justification
|
RIGHT
Right
|
| Modifier and Type | Method and Description |
|---|---|
static STJc |
fromValue(String v) |
String |
value() |
static STJc |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STJc[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STJc LEFT
public static final STJc RIGHT
public static final STJc CENTER
public static final STJc CENTER_GROUP
public static STJc[] values()
for (STJc c : STJc.values()) System.out.println(c);
public static STJc 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()
Copyright © 2007-2020. All Rights Reserved.