public enum STChapterSep extends Enum<STChapterSep>
Java class for ST_ChapterSep.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_ChapterSep">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="hyphen"/>
<enumeration value="period"/>
<enumeration value="colon"/>
<enumeration value="emDash"/>
<enumeration value="enDash"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
COLON
Colon Chapter Separator
|
EM_DASH
Em Dash Chapter
Separator
|
EN_DASH
En Dash Chapter
Separator
|
HYPHEN
Hyphen Chapter
Separator
|
PERIOD
Period Chapter
Separator
|
| Modifier and Type | Method and Description |
|---|---|
static STChapterSep |
fromValue(String v) |
String |
value() |
static STChapterSep |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STChapterSep[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STChapterSep HYPHEN
public static final STChapterSep PERIOD
public static final STChapterSep COLON
public static final STChapterSep EM_DASH
public static final STChapterSep EN_DASH
public static STChapterSep[] values()
for (STChapterSep c : STChapterSep.values()) System.out.println(c);
public static STChapterSep 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 STChapterSep fromValue(String v)
Copyright © 2007-2019. All Rights Reserved.