Package org.xmlresolver.catalog.entry
Enum Entry.Type
- java.lang.Object
-
- java.lang.Enum<Entry.Type>
-
- org.xmlresolver.catalog.entry.Entry.Type
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Entry.Type>
- Enclosing class:
- Entry
public static enum Entry.Type extends java.lang.Enum<Entry.Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CATALOG
DELEGATE_PUBLIC
DELEGATE_SYSTEM
DELEGATE_URI
DOCTYPE
DOCUMENT
DTD_DECL
ENTITY
GROUP
LINKTYPE
NEXT_CATALOG
NOTATION
NULL
PUBLIC
REWRITE_SYSTEM
REWRITE_URI
SGML_DECL
SYSTEM
SYSTEM_SUFFIX
URI
URI_SUFFIX
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Entry.Type
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Entry.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NULL
public static final Entry.Type NULL
-
CATALOG
public static final Entry.Type CATALOG
-
DELEGATE_PUBLIC
public static final Entry.Type DELEGATE_PUBLIC
-
DELEGATE_SYSTEM
public static final Entry.Type DELEGATE_SYSTEM
-
DELEGATE_URI
public static final Entry.Type DELEGATE_URI
-
DOCTYPE
public static final Entry.Type DOCTYPE
-
DOCUMENT
public static final Entry.Type DOCUMENT
-
DTD_DECL
public static final Entry.Type DTD_DECL
-
ENTITY
public static final Entry.Type ENTITY
-
GROUP
public static final Entry.Type GROUP
-
LINKTYPE
public static final Entry.Type LINKTYPE
-
NEXT_CATALOG
public static final Entry.Type NEXT_CATALOG
-
NOTATION
public static final Entry.Type NOTATION
-
PUBLIC
public static final Entry.Type PUBLIC
-
REWRITE_SYSTEM
public static final Entry.Type REWRITE_SYSTEM
-
REWRITE_URI
public static final Entry.Type REWRITE_URI
-
SGML_DECL
public static final Entry.Type SGML_DECL
-
SYSTEM
public static final Entry.Type SYSTEM
-
SYSTEM_SUFFIX
public static final Entry.Type SYSTEM_SUFFIX
-
URI
public static final Entry.Type URI
-
URI_SUFFIX
public static final Entry.Type URI_SUFFIX
-
-
Method Detail
-
values
public static Entry.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 (Entry.Type c : Entry.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 Entry.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
-
-