Class XPath.NodeTest
- java.lang.Object
-
- org.smooks.engine.delivery.sax.ng.org.apache.xerces.impl.xpath.XPath.NodeTest
-
-
Constructor Summary
Constructors Constructor Description NodeTest(short type)
Constructs a node test of type WILDCARD or NODE.NodeTest(String prefix, String uri)
Constructs a node test of type Namespace.NodeTest(XPath.NodeTest nodeTest)
Copy constructor.NodeTest(QName name)
Constructs a node test of type QName.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
clone()
Returns a clone of this object.String
toString()
Returns a string representation of this object.
-
-
-
Field Detail
-
QNAME
public static final short QNAME
Type: qualified name.- See Also:
- Constant Field Values
-
WILDCARD
public static final short WILDCARD
Type: wildcard.- See Also:
- Constant Field Values
-
NODE
public static final short NODE
Type: node.- See Also:
- Constant Field Values
-
NAMESPACE
public static final short NAMESPACE
Type: namespace- See Also:
- Constant Field Values
-
type
public final short type
Node test type.
-
name
public final QName name
Node qualified name.
-
-
Constructor Detail
-
NodeTest
public NodeTest(short type)
Constructs a node test of type WILDCARD or NODE.
-
NodeTest
public NodeTest(QName name)
Constructs a node test of type QName.
-
NodeTest
public NodeTest(XPath.NodeTest nodeTest)
Copy constructor.
-
-