Enum Reference.Type
- java.lang.Object
-
- java.lang.Enum<Reference.Type>
-
- org.w3c.epubcheck.core.references.Reference.Type
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Reference.Type>
- Enclosing class:
- Reference
public static enum Reference.Type extends java.lang.Enum<Reference.Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUDIOCITEFONTGENERICHYPERLINKIMAGELINKMEDIA_OVERLAYNAV_PAGELIST_LINKNAV_TOC_LINKOVERLAY_TEXT_LINKREGION_BASED_NAVSEARCH_KEYSTYLESHEETSVG_CLIP_PATHSVG_PAINTSVG_SYMBOLTRACKVIDEO
-
Constructor Summary
Constructors Modifier Constructor Description privateType()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisPublicationResourceReference()static Reference.TypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Reference.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LINK
public static final Reference.Type LINK
-
GENERIC
public static final Reference.Type GENERIC
-
STYLESHEET
public static final Reference.Type STYLESHEET
-
MEDIA_OVERLAY
public static final Reference.Type MEDIA_OVERLAY
-
HYPERLINK
public static final Reference.Type HYPERLINK
-
FONT
public static final Reference.Type FONT
-
IMAGE
public static final Reference.Type IMAGE
-
AUDIO
public static final Reference.Type AUDIO
-
VIDEO
public static final Reference.Type VIDEO
-
TRACK
public static final Reference.Type TRACK
-
CITE
public static final Reference.Type CITE
-
SVG_PAINT
public static final Reference.Type SVG_PAINT
-
SVG_CLIP_PATH
public static final Reference.Type SVG_CLIP_PATH
-
SVG_SYMBOL
public static final Reference.Type SVG_SYMBOL
-
REGION_BASED_NAV
public static final Reference.Type REGION_BASED_NAV
-
SEARCH_KEY
public static final Reference.Type SEARCH_KEY
-
NAV_TOC_LINK
public static final Reference.Type NAV_TOC_LINK
-
NAV_PAGELIST_LINK
public static final Reference.Type NAV_PAGELIST_LINK
-
OVERLAY_TEXT_LINK
public static final Reference.Type OVERLAY_TEXT_LINK
-
-
Method Detail
-
values
public static Reference.Type[] 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 (Reference.Type c : Reference.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Reference.Type 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
-
isPublicationResourceReference
public boolean isPublicationResourceReference()
-
-