Package com.adobe.epubcheck.vocab
Enum IndexVocab.EPUB_TYPES
- java.lang.Object
-
- java.lang.Enum<IndexVocab.EPUB_TYPES>
-
- com.adobe.epubcheck.vocab.IndexVocab.EPUB_TYPES
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<IndexVocab.EPUB_TYPES>
- Enclosing class:
- IndexVocab
public static enum IndexVocab.EPUB_TYPES extends java.lang.Enum<IndexVocab.EPUB_TYPES>
-
-
Enum Constant Summary
-
Constructor Summary
Constructors Modifier Constructor Description privateEPUB_TYPES()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IndexVocab.EPUB_TYPESvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static IndexVocab.EPUB_TYPES[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INDEX
public static final IndexVocab.EPUB_TYPES INDEX
-
INDEX_EDITOR_NOTE
public static final IndexVocab.EPUB_TYPES INDEX_EDITOR_NOTE
-
INDEX_ENTRY
public static final IndexVocab.EPUB_TYPES INDEX_ENTRY
-
INDEX_ENTRY_LIST
public static final IndexVocab.EPUB_TYPES INDEX_ENTRY_LIST
-
INDEX_GROUP
public static final IndexVocab.EPUB_TYPES INDEX_GROUP
-
INDEX_HEADNOTES
public static final IndexVocab.EPUB_TYPES INDEX_HEADNOTES
-
INDEX_LEGEND
public static final IndexVocab.EPUB_TYPES INDEX_LEGEND
-
INDEX_LOCATOR
public static final IndexVocab.EPUB_TYPES INDEX_LOCATOR
-
INDEX_LOCATOR_LIST
public static final IndexVocab.EPUB_TYPES INDEX_LOCATOR_LIST
-
INDEX_LOCATOR_RANGE
public static final IndexVocab.EPUB_TYPES INDEX_LOCATOR_RANGE
-
INDEX_TERM
public static final IndexVocab.EPUB_TYPES INDEX_TERM
-
INDEX_TERM_CATEGORIES
public static final IndexVocab.EPUB_TYPES INDEX_TERM_CATEGORIES
-
INDEX_TERM_CATEGORY
public static final IndexVocab.EPUB_TYPES INDEX_TERM_CATEGORY
-
INDEX_XREF_PREFERRED
public static final IndexVocab.EPUB_TYPES INDEX_XREF_PREFERRED
-
INDEX_XREF_RELATED
public static final IndexVocab.EPUB_TYPES INDEX_XREF_RELATED
-
-
Method Detail
-
values
public static IndexVocab.EPUB_TYPES[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IndexVocab.EPUB_TYPES c : IndexVocab.EPUB_TYPES.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IndexVocab.EPUB_TYPES valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-