public enum CSLLabel extends Enum<CSLLabel>
| Enum Constant and Description |
|---|
BOOK |
CHAPTER |
COLUMN |
FIGURE |
FOLIO |
ISSUE |
LINE |
NOTE |
OPUS |
PAGE |
PARAGRAPH |
PART |
SECTION |
SUB_VERBO |
VERSE |
VOLUME |
| Modifier and Type | Method and Description |
|---|---|
static CSLLabel |
fromString(String str)
Converts the given string to a CSLLabel
|
String |
toString() |
static CSLLabel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CSLLabel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CSLLabel BOOK
public static final CSLLabel CHAPTER
public static final CSLLabel COLUMN
public static final CSLLabel FIGURE
public static final CSLLabel FOLIO
public static final CSLLabel ISSUE
public static final CSLLabel LINE
public static final CSLLabel NOTE
public static final CSLLabel OPUS
public static final CSLLabel PAGE
public static final CSLLabel PARAGRAPH
public static final CSLLabel PART
public static final CSLLabel SECTION
public static final CSLLabel SUB_VERBO
public static final CSLLabel VERSE
public static final CSLLabel VOLUME
public static CSLLabel[] values()
for (CSLLabel c : CSLLabel.values()) System.out.println(c);
public static CSLLabel 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 null