Package com.adobe.epubcheck.vocab
Enum DictVocab.EPUB_TYPES
- java.lang.Object
-
- java.lang.Enum<DictVocab.EPUB_TYPES>
-
- com.adobe.epubcheck.vocab.DictVocab.EPUB_TYPES
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DictVocab.EPUB_TYPES>
- Enclosing class:
- DictVocab
public static enum DictVocab.EPUB_TYPES extends java.lang.Enum<DictVocab.EPUB_TYPES>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANTONYM_GROUPCONDENSED_ENTRYDEFDICTENTRYDICTIONARYETYMOLOGYEXAMPLEGRAM_INFOIDIOMPART_OF_SPEECHPART_OF_SPEECH_GROUPPART_OF_SPEECH_LISTPHONETIC_TRANSCRIPTIONPHRASE_GROUPPHRASE_LISTSENSE_GROUPSENSE_LISTSYNONYM_GROUPTRANTRAN_INFO
-
Constructor Summary
Constructors Modifier Constructor Description privateEPUB_TYPES()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DictVocab.EPUB_TYPESvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DictVocab.EPUB_TYPES[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANTONYM_GROUP
public static final DictVocab.EPUB_TYPES ANTONYM_GROUP
-
CONDENSED_ENTRY
public static final DictVocab.EPUB_TYPES CONDENSED_ENTRY
-
DEF
public static final DictVocab.EPUB_TYPES DEF
-
DICTENTRY
public static final DictVocab.EPUB_TYPES DICTENTRY
-
DICTIONARY
public static final DictVocab.EPUB_TYPES DICTIONARY
-
ETYMOLOGY
public static final DictVocab.EPUB_TYPES ETYMOLOGY
-
EXAMPLE
public static final DictVocab.EPUB_TYPES EXAMPLE
-
GRAM_INFO
public static final DictVocab.EPUB_TYPES GRAM_INFO
-
IDIOM
public static final DictVocab.EPUB_TYPES IDIOM
-
PART_OF_SPEECH
public static final DictVocab.EPUB_TYPES PART_OF_SPEECH
-
PART_OF_SPEECH_GROUP
public static final DictVocab.EPUB_TYPES PART_OF_SPEECH_GROUP
-
PART_OF_SPEECH_LIST
public static final DictVocab.EPUB_TYPES PART_OF_SPEECH_LIST
-
PHONETIC_TRANSCRIPTION
public static final DictVocab.EPUB_TYPES PHONETIC_TRANSCRIPTION
-
PHRASE_GROUP
public static final DictVocab.EPUB_TYPES PHRASE_GROUP
-
PHRASE_LIST
public static final DictVocab.EPUB_TYPES PHRASE_LIST
-
SENSE_GROUP
public static final DictVocab.EPUB_TYPES SENSE_GROUP
-
SENSE_LIST
public static final DictVocab.EPUB_TYPES SENSE_LIST
-
SYNONYM_GROUP
public static final DictVocab.EPUB_TYPES SYNONYM_GROUP
-
TRAN
public static final DictVocab.EPUB_TYPES TRAN
-
TRAN_INFO
public static final DictVocab.EPUB_TYPES TRAN_INFO
-
-
Method Detail
-
values
public static DictVocab.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 (DictVocab.EPUB_TYPES c : DictVocab.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 DictVocab.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
-
-