Uses of Class
jd.xml.xpath.expr.NumericExpression

Packages that use NumericExpression
jd.xml.xpath.expr.function Contains the XPath functions. 
jd.xml.xpath.expr.misc Contains classes representing various XPath expressions. 
jd.xml.xpath.expr.operator Contains classes representing various XPath operators. 
 

Uses of NumericExpression in jd.xml.xpath.expr.function
 

Subclasses of NumericExpression in jd.xml.xpath.expr.function
 class Average
          Average represents the optimized xpath expression "sum(node-set x) div count(node-set x)".
 class Ceiling
          Ceiling represents the xpath core function "number ceiling(number)".
 class Count
          Count represents the xpath core function "number count(nodeset)".
 class Floor
          Floor represents the xpath core function "number floor(number)".
 class Last
          Last represents the xpath core function "number last()".
 class NumericFunction
          A base class for all functions which evaluate to a number.
 class Position
          Position represents the xpath core function "number position()".
 class Round
          Round represents the xpath core function "number round(number)".
 class StringLength
          StringLength represents the xpath core function "number string-length(string?)".
 class Sum
          Sum represents the xpath core function "number sum(node-set)".
 class ToNumber
          ToNumber represents the xpath core function "number number(object?)".
 

Uses of NumericExpression in jd.xml.xpath.expr.misc
 

Subclasses of NumericExpression in jd.xml.xpath.expr.misc
 class Negate
          Negate represents the negate expression.
 

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

Subclasses of NumericExpression in jd.xml.xpath.expr.operator
 class Add
          Add represents the '+' expression.
 class Divide
          Add represents the 'div' expression.
 class Modulo
          Mod represents the 'mod' expression.
 class Multiply
          Multiply represents the '*' expression.
 class NumericOperator
          NumericOperator is a base class for numeric operations.
 class Subtract
          Subtract represents the '-' expression.