Uses of Class
jd.xml.xpath.axis.Axis

Packages that use Axis
jd.xml.xpath.axis Contains classes that implement the path expressions. 
jd.xml.xpath.expr Contains the base XPath expression classes. 
jd.xml.xpath.expr.path   
jd.xml.xpath.expr.visitor   
 

Uses of Axis in jd.xml.xpath.axis
 

Subclasses of Axis in jd.xml.xpath.axis
 class AncestorAxis
          AncestorAxis represents the ancestor axis.
 class AncestorOrSelfAxis
          AncestorOrSelfAxis represents the ancestor-or-self axis.
 class AttributeAxis
          AttributeAxis represents the attribute axis.
 class ChildAxis
          ChildAxis represents the child axis.
 class DescendantAxis
          DescendantAxis represents the descendant axis.
 class DescendantOrSelfAxis
          DescendantOrSelfAxis represents the descendant-or-self axis.
 class FollowingAxis
          FollowingAxis represents the following axis.
 class FollowingSiblingAxis
          FollowingSiblingAxis represents the following-sibling axis.
 class NamespaceAxis
          NamespaceAxis represents the namespace axis.
 class ParentAxis
          ParentAxis represents the parent axis.
 class PrecedingAxis
          PrecedingAxis represents the preceding axis.
 class PrecedingSiblingAxis
          PrecedingSiblingAxis represents the preceding-sibling axis.
 class RootAxis
          RootAxis represents the pseudo-axis for the document root.
 class SelfAxis
          SelfAxis represents the self axis.
 

Fields in jd.xml.xpath.axis declared as Axis
static Axis SelfAxis.INSTANCE
          The axis instance.
static Axis RootAxis.INSTANCE
          The axis instance.
static Axis PrecedingSiblingAxis.INSTANCE
          The axis instance.
static Axis PrecedingAxis.INSTANCE
          The axis instance.
static Axis ParentAxis.INSTANCE
          The axis instance.
static Axis NamespaceAxis.INSTANCE
          The axis instance.
static Axis FollowingSiblingAxis.INSTANCE
          The axis instance.
static Axis FollowingAxis.INSTANCE
          The axis instance.
static Axis DescendantOrSelfAxis.INSTANCE
          The axis instance.
static Axis DescendantAxis.INSTANCE
          The axis instance.
static Axis ChildAxis.INSTANCE
          The axis instance.
static Axis AttributeAxis.INSTANCE
          The axis instance.
static Axis AncestorOrSelfAxis.INSTANCE
          The axis instance.
static Axis AncestorAxis.INSTANCE
          The axis instance.
 

Methods in jd.xml.xpath.axis that return Axis
 Axis AxisLibrary.get(String name)
          Get an axis instance for a name.
 

Uses of Axis in jd.xml.xpath.expr
 

Methods in jd.xml.xpath.expr with parameters of type Axis
 void ExpressionVisitor.locationStep(Expression expr, Axis axis, NodeTest nodeTest)
           
 void ExpressionVisitor.locationStep(Expression expr, Axis axis, NodeTest nodeTest, Expression predicate, boolean useForwardProximity, boolean isUniqueFilter)
           
 

Uses of Axis in jd.xml.xpath.expr.path
 

Fields in jd.xml.xpath.expr.path declared as Axis
protected  Axis LocationStep.axis_
           
 

Methods in jd.xml.xpath.expr.path that return Axis
 Axis LocationStep.getAxis()
          Return the Axis of the LocationStep.
 

Constructors in jd.xml.xpath.expr.path with parameters of type Axis
SimpleLocationStep(Axis axis, NodeTest nodeTest)
          Create a new SimpleLocationStep.
LocationStep(Axis axis, NodeTest nodeTest)
          Create a new LocationStep.
 

Uses of Axis in jd.xml.xpath.expr.visitor
 

Methods in jd.xml.xpath.expr.visitor with parameters of type Axis
 void ExprWriter.locationStep(Expression expr, Axis axis, NodeTest nodeTest)
           
 void ExprWriter.locationStep(Expression expr, Axis axis, NodeTest nodeTest, Expression predicate, boolean useForwardProximity, boolean isUniqueFilter)
           
 void ExprVisitorImpl.locationStep(Expression expr, Axis axis, NodeTest nodeTest)
           
 void ExprVisitorImpl.locationStep(Expression expr, Axis axis, NodeTest nodeTest, Expression predicate, boolean useForwardProximity, boolean isUniqueFilter)
           
 void ExprTreeWriter.locationStep(Expression expr, Axis axis, NodeTest nodeTest)
           
 void ExprTreeWriter.locationStep(Expression expr, Axis axis, NodeTest nodeTest, Expression predicate, boolean useForwardProximity, boolean isUniqueFilter)
           
 void ExprSimplifier.locationStep(Expression expr, Axis axis, NodeTest nodeTest)
           
 void ExprSimplifier.locationStep(Expression expr, Axis axis, NodeTest nodeTest, Expression predicate, boolean useForwardProximity, boolean isUniqueFilter)
           
 void ExprScreener.locationStep(Expression expr, Axis axis, NodeTest nodeTest, Expression predicate, boolean useForwardProximity, boolean isUniqueFilter)