Package com.adobe.epubcheck.vocab
Enum MediaOverlaysVocab.PROPERTIES
- java.lang.Object
-
- java.lang.Enum<MediaOverlaysVocab.PROPERTIES>
-
- com.adobe.epubcheck.vocab.MediaOverlaysVocab.PROPERTIES
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<MediaOverlaysVocab.PROPERTIES>
- Enclosing class:
- MediaOverlaysVocab
public static enum MediaOverlaysVocab.PROPERTIES extends java.lang.Enum<MediaOverlaysVocab.PROPERTIES>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVE_CLASSDURATIONNARRATORPLAYBACK_ACTIVE_CLASS
-
Constructor Summary
Constructors Modifier Constructor Description privatePROPERTIES()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MediaOverlaysVocab.PROPERTIESvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MediaOverlaysVocab.PROPERTIES[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACTIVE_CLASS
public static final MediaOverlaysVocab.PROPERTIES ACTIVE_CLASS
-
DURATION
public static final MediaOverlaysVocab.PROPERTIES DURATION
-
NARRATOR
public static final MediaOverlaysVocab.PROPERTIES NARRATOR
-
PLAYBACK_ACTIVE_CLASS
public static final MediaOverlaysVocab.PROPERTIES PLAYBACK_ACTIVE_CLASS
-
-
Method Detail
-
values
public static MediaOverlaysVocab.PROPERTIES[] 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 (MediaOverlaysVocab.PROPERTIES c : MediaOverlaysVocab.PROPERTIES.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MediaOverlaysVocab.PROPERTIES 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
-
-