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

Packages that use Operator
org.objectweb.medor.expression.api   
org.objectweb.medor.expression.lib   
 

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

Subinterfaces of Operator in org.objectweb.medor.expression.api
 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 UnaryArithmeticOperator
           
 interface UnaryLogicalOperator
           
 interface UnaryOperator
           
 

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

Classes in org.objectweb.medor.expression.lib that implement Operator
 class Abs
           
 class And
           
 class BasicBinaryArithmeticOperator
           
 class BasicBinaryLogicalOperator
           
 class BasicBinaryOperator
           
 class BasicComparator
           
 class BasicOperator
           
 class BasicUnaryArithmeticOperator
           
 class BasicUnaryLogicalOperator
           
 class BasicUnaryOperator
           
 class Bitwize
           
 class Concat
           
 class ConditionalAnd
           
 class ConditionalOr
           
 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 IndexedLocate
          Operator representing the search for a substring within a given input string, starting at a given index.
 class Length
           
 class Like
          Is an operator representing the LIKE or the NOT LIKE operator.
 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 Minus
           
 class Mod
          This class represents the Modulo operator.
 class Mult
           
 class Not
           
 class NotEqual
           
 class Or
           
 class Plus
          This operator operates on the numeric Types and the string Type.
 class Round
           
 class Sqrt
           
 class StringLower
           
 class StringUpper
          Is an operator to upper string operand.
 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 TypeConverter
          This unary operator permit to change the type of an expression to another.
 class UMinus