Uses of Interface
jd.xml.xpath.expr.operator.Operator

Packages that use Operator
jd.xml.xpath.expr.compare Contains classes for the =, !=, >, >=, <, <= operators. 
jd.xml.xpath.expr.operator Contains classes representing various XPath operators. 
jd.xml.xpath.expr.path   
 

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

Classes in jd.xml.xpath.expr.compare that implement Operator
 class Equals
          A base class for equality comparision.
 class EqualsBooleans
          A Equals implementation which compares two boolean values.
 class EqualsNumbers
          A Equals implementation which compares two number values.
 class EqualsObjectNumber
          A Equals implementation which compares a object and a number.
 class EqualsObjects
          A Equals implementation which compares two XObjects.
 class EqualsObjectString
          A Equals implementation which compares a variable value and a string.
 class EqualsSetSimple
          A Equals implementation which compares a set and a simple value.
 class EqualsStrings
          A Equals implementation which compares two string values.
 class Relate
          A base class for relational comparisions.
 class RelateNumbers
          A Relate implementation for number expressiona.
 class RelateObjectNumber
          A Relate implementation which compares a variable or node-set with a number value.
 class RelateObjects
          A Relate implementation which compares a variable or node-set with a number value.
 

Uses of Operator in jd.xml.xpath.expr.operator
 

Classes in jd.xml.xpath.expr.operator that implement Operator
 class Add
          Add represents the '+' expression.
 class And
          And represents the 'and' expression.
 class BooleanOperator
          BooleanOperator is a base class for operators that operate on booleans.
 class Divide
          Add represents the 'div' expression.
 class Modulo
          Mod represents the 'mod' expression.
 class Multiply
          Multiply represents the '*' expression.
 class NodeSetOperator
          NodeSetOperator is a base class for operations that take two node-set expression arguments and return a node-set.
 class NumericOperator
          NumericOperator is a base class for numeric operations.
 class Or
          Or represents the 'or' expression.
 class Subtract
          Subtract represents the '-' expression.
 class Union
          Union represents the '|' expression.
 

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

Classes in jd.xml.xpath.expr.path that implement Operator
 class ComposedPath
          ComposedPath is an expression for the production rule "FilterExpr '/' RelativeLocationPath".