nu.validator.htmlparser.tools
Enum XSLT4HTML5.Mode

java.lang.Object
  extended by java.lang.Enum<XSLT4HTML5.Mode>
      extended by 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>


Enum Constant Summary
BUFFERED_SAX
           
DOM
           
STREAMING_SAX
           
 
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
Method Detail

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