Class XPath.Axis
- java.lang.Object
-
- org.smooks.engine.delivery.sax.ng.org.apache.xerces.impl.xpath.XPath.Axis
-
-
Field Summary
Fields Modifier and Type Field Description static short
ATTRIBUTE
Type: attribute.static short
CHILD
Type: child.static short
DESCENDANT
Type: descendant.static short
SELF
Type: self.short
type
Axis type.
-
Constructor Summary
Constructors Modifier Constructor Description Axis(short type)
Constructs an axis with the specified type.protected
Axis(XPath.Axis axis)
Copy constructor.
-
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
-
CHILD
public static final short CHILD
Type: child.- See Also:
- Constant Field Values
-
ATTRIBUTE
public static final short ATTRIBUTE
Type: attribute.- See Also:
- Constant Field Values
-
SELF
public static final short SELF
Type: self.- See Also:
- Constant Field Values
-
DESCENDANT
public static final short DESCENDANT
Type: descendant.- See Also:
- Constant Field Values
-
type
public final short type
Axis type.
-
-
Constructor Detail
-
Axis
public Axis(short type)
Constructs an axis with the specified type.
-
Axis
protected Axis(XPath.Axis axis)
Copy constructor.
-
-