Package com.adobe.epubcheck.vocab
Enum RenditionVocabs.META_PROPERTIES
- java.lang.Object
-
- java.lang.Enum<RenditionVocabs.META_PROPERTIES>
-
- com.adobe.epubcheck.vocab.RenditionVocabs.META_PROPERTIES
-
- All Implemented Interfaces:
PropertyStatus,java.io.Serializable,java.lang.Comparable<RenditionVocabs.META_PROPERTIES>
- Enclosing class:
- RenditionVocabs
public static enum RenditionVocabs.META_PROPERTIES extends java.lang.Enum<RenditionVocabs.META_PROPERTIES> implements PropertyStatus
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FLOWLAYOUTORIENTATIONSPREADVIEWPORT
-
Field Summary
Fields Modifier and Type Field Description private PropertyStatusstatus-
Fields inherited from interface com.adobe.epubcheck.vocab.PropertyStatus
ALLOWED, DEPRECATED, DISALLOWED_ON_CONTENT_DOCS
-
-
Constructor Summary
Constructors Modifier Constructor Description privateMETA_PROPERTIES()privateMETA_PROPERTIES(PropertyStatus status)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisAllowed(ValidationContext context)booleanisDeprecated()static RenditionVocabs.META_PROPERTIESvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static RenditionVocabs.META_PROPERTIES[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LAYOUT
public static final RenditionVocabs.META_PROPERTIES LAYOUT
-
ORIENTATION
public static final RenditionVocabs.META_PROPERTIES ORIENTATION
-
SPREAD
public static final RenditionVocabs.META_PROPERTIES SPREAD
-
VIEWPORT
public static final RenditionVocabs.META_PROPERTIES VIEWPORT
-
FLOW
public static final RenditionVocabs.META_PROPERTIES FLOW
-
-
Field Detail
-
status
private final PropertyStatus status
-
-
Constructor Detail
-
META_PROPERTIES
private META_PROPERTIES()
-
META_PROPERTIES
private META_PROPERTIES(PropertyStatus status)
-
-
Method Detail
-
values
public static RenditionVocabs.META_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 (RenditionVocabs.META_PROPERTIES c : RenditionVocabs.META_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 RenditionVocabs.META_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
-
isAllowed
public boolean isAllowed(ValidationContext context)
- Specified by:
isAllowedin interfacePropertyStatus
-
isDeprecated
public boolean isDeprecated()
- Specified by:
isDeprecatedin interfacePropertyStatus
-
-