Package org.apache.xerces.impl.xpath
Class XPath.Step
- java.lang.Object
-
- org.apache.xerces.impl.xpath.XPath.Step
-
- All Implemented Interfaces:
java.lang.Cloneable
- Enclosing class:
- XPath
public static class XPath.Step extends java.lang.Object implements java.lang.CloneableA location path step comprised of an axis and node test.INTERNAL:
- Usage of this class is not supported. It may be altered or removed at any time.
- Author:
- Andy Clark, IBM
-
-
Field Summary
Fields Modifier and Type Field Description XPath.AxisaxisAxis.XPath.NodeTestnodeTestNode test.
-
Constructor Summary
Constructors Modifier Constructor Description Step(XPath.Axis axis, XPath.NodeTest nodeTest)Constructs a step from an axis and node test.protectedStep(XPath.Step step)Copy constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Objectclone()Returns a clone of this object.java.lang.StringtoString()Returns a string representation of this object.
-
-
-
Field Detail
-
axis
public final XPath.Axis axis
Axis.
-
nodeTest
public final XPath.NodeTest nodeTest
Node test.
-
-
Constructor Detail
-
Step
public Step(XPath.Axis axis, XPath.NodeTest nodeTest)
Constructs a step from an axis and node test.
-
Step
protected Step(XPath.Step step)
Copy constructor.
-
-