public enum STTabTlc extends Enum<STTabTlc>
Java class for ST_TabTlc.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_TabTlc">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="none"/>
<enumeration value="dot"/>
<enumeration value="hyphen"/>
<enumeration value="underscore"/>
<enumeration value="heavy"/>
<enumeration value="middleDot"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DOT
Dotted leader line
|
HEAVY
Heavy solid leader line
|
HYPHEN
Dashed tab stop leader
line
|
MIDDLE_DOT
Middle dot leader line
|
NONE
No tab stop leader
|
UNDERSCORE
Solid leader line
|
| Modifier and Type | Method and Description |
|---|---|
static STTabTlc |
fromValue(String v) |
String |
value() |
static STTabTlc |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STTabTlc[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STTabTlc NONE
public static final STTabTlc DOT
public static final STTabTlc HYPHEN
public static final STTabTlc UNDERSCORE
public static final STTabTlc HEAVY
public static final STTabTlc MIDDLE_DOT
public static STTabTlc[] values()
for (STTabTlc c : STTabTlc.values()) System.out.println(c);
public static STTabTlc 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-2019. All Rights Reserved.