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