Enum HTMLDocument.ParsingStatus
- java.lang.Object
-
- java.lang.Enum<HTMLDocument.ParsingStatus>
-
- org.htmlunit.javascript.host.html.HTMLDocument.ParsingStatus
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<HTMLDocument.ParsingStatus>
- Enclosing class:
- HTMLDocument
private static enum HTMLDocument.ParsingStatus extends java.lang.Enum<HTMLDocument.ParsingStatus>
-
-
Constructor Summary
Constructors Modifier Constructor Description private
ParsingStatus()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HTMLDocument.ParsingStatus
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static HTMLDocument.ParsingStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OUTSIDE
public static final HTMLDocument.ParsingStatus OUTSIDE
-
START
public static final HTMLDocument.ParsingStatus START
-
IN_NAME
public static final HTMLDocument.ParsingStatus IN_NAME
-
INSIDE
public static final HTMLDocument.ParsingStatus INSIDE
-
IN_STRING
public static final HTMLDocument.ParsingStatus IN_STRING
-
-
Method Detail
-
values
public static HTMLDocument.ParsingStatus[] 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 (HTMLDocument.ParsingStatus c : HTMLDocument.ParsingStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HTMLDocument.ParsingStatus 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
-
-