nu.validator.htmlparser.tools
Enum XSLT4HTML5.Mode
java.lang.Object
java.lang.Enum<XSLT4HTML5.Mode>
nu.validator.htmlparser.tools.XSLT4HTML5.Mode
- All Implemented Interfaces:
- Serializable, Comparable<XSLT4HTML5.Mode>
- Enclosing class:
- XSLT4HTML5
private static enum XSLT4HTML5.Mode
- extends Enum<XSLT4HTML5.Mode>
Method Summary |
static XSLT4HTML5.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static XSLT4HTML5.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
STREAMING_SAX
public static final XSLT4HTML5.Mode STREAMING_SAX
BUFFERED_SAX
public static final XSLT4HTML5.Mode BUFFERED_SAX
DOM
public static final XSLT4HTML5.Mode DOM
values
public static final XSLT4HTML5.Mode[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(XSLT4HTML5.Mode c : XSLT4HTML5.Mode.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static XSLT4HTML5.Mode valueOf(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:
IllegalArgumentException
- if this enum type has no constant
with the specified name