Package com.adobe.epubcheck.vocab
Enum DataNavVocab.EPUB_TYPES
- java.lang.Object
-
- java.lang.Enum<DataNavVocab.EPUB_TYPES>
-
- com.adobe.epubcheck.vocab.DataNavVocab.EPUB_TYPES
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DataNavVocab.EPUB_TYPES>
- Enclosing class:
- DataNavVocab
public static enum DataNavVocab.EPUB_TYPES extends java.lang.Enum<DataNavVocab.EPUB_TYPES>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description REGION_BASED
-
Constructor Summary
Constructors Modifier Constructor Description privateEPUB_TYPES()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DataNavVocab.EPUB_TYPESvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DataNavVocab.EPUB_TYPES[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REGION_BASED
public static final DataNavVocab.EPUB_TYPES REGION_BASED
-
-
Method Detail
-
values
public static DataNavVocab.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 (DataNavVocab.EPUB_TYPES c : DataNavVocab.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 DataNavVocab.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
-
-