Package com.adobe.epubcheck.vocab
Enum RenditionVocabs.ITEMREF_PROPERTIES
- java.lang.Object
-
- java.lang.Enum<RenditionVocabs.ITEMREF_PROPERTIES>
-
- com.adobe.epubcheck.vocab.RenditionVocabs.ITEMREF_PROPERTIES
-
- All Implemented Interfaces:
PropertyStatus,java.io.Serializable,java.lang.Comparable<RenditionVocabs.ITEMREF_PROPERTIES>
- Enclosing class:
- RenditionVocabs
public static enum RenditionVocabs.ITEMREF_PROPERTIES extends java.lang.Enum<RenditionVocabs.ITEMREF_PROPERTIES> implements PropertyStatus
-
-
Enum Constant Summary
-
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 privateITEMREF_PROPERTIES()privateITEMREF_PROPERTIES(PropertyStatus status)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisAllowed(ValidationContext context)booleanisDeprecated()static RenditionVocabs.ITEMREF_PROPERTIESvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static RenditionVocabs.ITEMREF_PROPERTIES[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LAYOUT_PRE_PAGINATED
public static final RenditionVocabs.ITEMREF_PROPERTIES LAYOUT_PRE_PAGINATED
-
LAYOUT_REFLOWABLE
public static final RenditionVocabs.ITEMREF_PROPERTIES LAYOUT_REFLOWABLE
-
ORIENTATION_AUTO
public static final RenditionVocabs.ITEMREF_PROPERTIES ORIENTATION_AUTO
-
ORIENTATION_LANDSCAPE
public static final RenditionVocabs.ITEMREF_PROPERTIES ORIENTATION_LANDSCAPE
-
ORIENTATION_PORTRAIT
public static final RenditionVocabs.ITEMREF_PROPERTIES ORIENTATION_PORTRAIT
-
SPREAD_AUTO
public static final RenditionVocabs.ITEMREF_PROPERTIES SPREAD_AUTO
-
SPREAD_BOTH
public static final RenditionVocabs.ITEMREF_PROPERTIES SPREAD_BOTH
-
SPREAD_LANDSCAPE
public static final RenditionVocabs.ITEMREF_PROPERTIES SPREAD_LANDSCAPE
-
SPREAD_NONE
public static final RenditionVocabs.ITEMREF_PROPERTIES SPREAD_NONE
-
SPREAD_PORTRAIT
public static final RenditionVocabs.ITEMREF_PROPERTIES SPREAD_PORTRAIT
-
PAGE_SPREAD_CENTER
public static final RenditionVocabs.ITEMREF_PROPERTIES PAGE_SPREAD_CENTER
-
PAGE_SPREAD_LEFT
public static final RenditionVocabs.ITEMREF_PROPERTIES PAGE_SPREAD_LEFT
-
PAGE_SPREAD_RIGHT
public static final RenditionVocabs.ITEMREF_PROPERTIES PAGE_SPREAD_RIGHT
-
FLOW_PAGINATED
public static final RenditionVocabs.ITEMREF_PROPERTIES FLOW_PAGINATED
-
FLOW_SCROLLED_CONTINUOUS
public static final RenditionVocabs.ITEMREF_PROPERTIES FLOW_SCROLLED_CONTINUOUS
-
FLOW_SCROLLED_DOC
public static final RenditionVocabs.ITEMREF_PROPERTIES FLOW_SCROLLED_DOC
-
FLOW_AUTO
public static final RenditionVocabs.ITEMREF_PROPERTIES FLOW_AUTO
-
ALIGN_X_CENTER
public static final RenditionVocabs.ITEMREF_PROPERTIES ALIGN_X_CENTER
-
-
Field Detail
-
status
private final PropertyStatus status
-
-
Constructor Detail
-
ITEMREF_PROPERTIES
private ITEMREF_PROPERTIES()
-
ITEMREF_PROPERTIES
private ITEMREF_PROPERTIES(PropertyStatus status)
-
-
Method Detail
-
values
public static RenditionVocabs.ITEMREF_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.ITEMREF_PROPERTIES c : RenditionVocabs.ITEMREF_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.ITEMREF_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
-
-