Uses of Interface
org.objectweb.medor.filter.api.Operator

Packages that use Operator
org.objectweb.medor.filter.api   
org.objectweb.medor.filter.jorm.lib   
org.objectweb.medor.filter.lib   
 

Uses of Operator in org.objectweb.medor.filter.api
 

Subinterfaces of Operator in org.objectweb.medor.filter.api
 interface AggregateOperator
           
 interface BelongOperator
           
 interface BinaryArithmeticOperator
          This interface represents a binary arithmetic operation (+, -, ...).
 interface BinaryLogicalOperator
          This interface represents a binary logical opertaion(and, or, ...)
 interface BinaryOperator
           
 interface Comparator
          This interface represents a mathematical comparator.
 interface ThreeArgsOperator
           
 interface UnaryArithmeticOperator
           
 interface UnaryLogicalOperator
           
 interface UnaryOperator
           
 

Uses of Operator in org.objectweb.medor.filter.jorm.lib
 

Classes in org.objectweb.medor.filter.jorm.lib that implement Operator
 class CompositePName
          A CompositePName is an Operator representing the construction of a PName from a NamingContext and several Fields.
 class SinglePName
          A SinglePName is an Operator representing the construction of a PName from a NamingContext and a single Field.
 

Uses of Operator in org.objectweb.medor.filter.lib
 

Classes in org.objectweb.medor.filter.lib that implement Operator
 class Abs
           
 class And
           
 class Avg
          Avg aggregate function.
 class BasicAggregateOperator
           
 class BasicBelongOperator
           
 class BasicBinaryArithmeticOperator
           
 class BasicBinaryLogicalOperator
           
 class BasicBinaryOperator
           
 class BasicComparator
           
 class BasicThreeArgsOperator
           
 class BasicUnaryArithmeticOperator
           
 class BasicUnaryLogicalOperator
           
 class BasicUnaryOperator
           
 class Bitwize
           
 class Concat
           
 class ConditionalAnd
           
 class ConditionalOr
           
 class Count
          Count aggregate function.
 class DivideBy
           
 class Equal
           
 class FirstLocate
           
 class Greater
          This class implements the QueryComparator interface; it represents ">" mathematical comparator.
 class GreaterEqual
          This class implements the QueryComparator interface; it represents ">=" mathematical comparator.
 class InCollection
          The InCollection class is an operator testing whether the value of a Field (the left operand, which is supposed to be a FieldOperand) is equal to one of the elements of a collecton (the right Operand)
 class IndexedLocate
          Operator representing the search for a substring within a given input string, starting at a given index.
 class IsEmpty
          IsEmpty operates on an Expression which must be of a TupleCollection type, or a GenClassRef.
 class IsNull
          IsNull operates on an Expression.
 class Length
           
 class Like
           
 class Lower
          This class implements the QueryComparator interface; it represents "<" mathematical comparator.
 class LowerEqual
          This class implements the QueryComparator interface; it represents "<=" mathematical comparator.
 class Max
          Max aggregate function.
 class MemberOf
          The MemberOf class is an operator testing whether the value of a list of Fields (the first n operands, which are supposed to be FieldOperands or ParameterOperands) are equal to one of the values of another list of Fields (the second n operands, which are supposed to be FieldOperands).
 class Min
          Min aggregate function.
 class Minus
           
 class Mod
          This class represents the Modulo operator.
 class Mult
           
 class NavigatorOperator
          A NavigatorOperator typically represents a path expression.
 class Not
           
 class NotEqual
           
 class Or
           
 class Plus
          This operator operates on the numeric Types and the string Type.
 class Sqrt
           
 class Substring
          Operator representing the substring extraction given a String, a first integer to start from and a second integer indicating the length of the required substring.
 class Sum
          Sum aggregate function.
 class UMinus