Package org.htmlunit.xpath.compiler
Class PseudoNames
- java.lang.Object
-
- org.htmlunit.xpath.compiler.PseudoNames
-
public class PseudoNames extends java.lang.Object
This is used to represent names of nodes that may not be named, like a comment node.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
PSEUDONAME_ANY
Pseudo name for a wild card pattern ('*').static java.lang.String
PSEUDONAME_COMMENT
Pseudo name for a comment node.static java.lang.String
PSEUDONAME_ROOT
Pseudo name for the root node.static java.lang.String
PSEUDONAME_TEXT
Pseudo name for a text node.
-
Constructor Summary
Constructors Constructor Description PseudoNames()
-
-
-
Field Detail
-
PSEUDONAME_ANY
public static final java.lang.String PSEUDONAME_ANY
Pseudo name for a wild card pattern ('*').- See Also:
- Constant Field Values
-
PSEUDONAME_ROOT
public static final java.lang.String PSEUDONAME_ROOT
Pseudo name for the root node.- See Also:
- Constant Field Values
-
PSEUDONAME_TEXT
public static final java.lang.String PSEUDONAME_TEXT
Pseudo name for a text node.- See Also:
- Constant Field Values
-
PSEUDONAME_COMMENT
public static final java.lang.String PSEUDONAME_COMMENT
Pseudo name for a comment node.- See Also:
- Constant Field Values
-
-