Uses of Class
jd.xml.xpath.object.Relation

Packages that use Relation
jd.xml.xpath.expr Contains the base XPath expression classes. 
jd.xml.xpath.expr.compare Contains classes for the =, !=, >, >=, <, <= operators. 
jd.xml.xpath.expr.visitor   
jd.xml.xpath.object Contains classes for the XPath objects, i.e. 
 

Uses of Relation in jd.xml.xpath.expr
 

Methods in jd.xml.xpath.expr with parameters of type Relation
 void ExpressionVisitor.compare(Expression expr, Expression lhs, Relation relation, Expression rhs)
           
 

Uses of Relation in jd.xml.xpath.expr.compare
 

Fields in jd.xml.xpath.expr.compare declared as Relation
protected  Relation Relate.relation_
           
 

Methods in jd.xml.xpath.expr.compare with parameters of type Relation
static Expression CompareFactory.createRelate(Expression expr1, Relation relation, Expression expr2)
           
 

Constructors in jd.xml.xpath.expr.compare with parameters of type Relation
RelateObjects(Expression lhs, Relation relation, Expression rhs)
           
RelateObjectNumber(Expression lhs, Relation relation, Expression rhs)
           
RelateNumbers(Expression lhs, Relation relation, Expression rhs)
           
Relate(Expression lhs, Relation relation, Expression rhs)
           
 

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

Methods in jd.xml.xpath.expr.visitor with parameters of type Relation
 void ExprWriter.compare(Expression expr, Expression lhs, Relation relation, Expression rhs)
           
 void ExprVisitorImpl.compare(Expression expr, Expression lhs, Relation relation, Expression rhs)
           
 void ExprTreeWriter.compare(Expression expr, Expression lhs, Relation relation, Expression rhs)
           
 void ExprSimplifier.compare(Expression expr, Expression lhs, Relation relation, Expression rhs)
           
 void ExprScreener.compare(Expression expr, Expression lhs, Relation relation, Expression rhs)
           
 void ExprPrecedence.compare(Expression expr, Expression lhs, Relation relation, Expression rhs)
           
 

Uses of Relation in jd.xml.xpath.object
 

Fields in jd.xml.xpath.object declared as Relation
static Relation Relation.LESS
           
static Relation Relation.LESS_EQUALS
           
static Relation Relation.GREATER
           
static Relation Relation.GREATER_EQUALS
           
 

Methods in jd.xml.xpath.object that return Relation
 Relation Relation.getReverse()
           
 

Methods in jd.xml.xpath.object with parameters of type Relation
 boolean XObject.compare(Relation relation, double value)
          Compare this XObject to the number value according the given relation.
 boolean XObject.compare(Relation relation, XObject object)
          Compare this XObject to the other object according the given relation.
 boolean XNodeSet.compare(Relation relation, double number)
          Compare this XObject to the number value according the given relation.
 boolean XNodeSet.compare(Relation relation, XNodeSet set)
          Compare this XObject to the number value according the given relation.
 boolean XNodeSet.compare(Relation relation, XObject object)
          Compare this XObject to the other object according the given relation.