Uses of Interface
isql.help.scalar.IBinaryScalar

Packages that use IBinaryScalar
isql.builder   
isql.expression   
isql.help.scalar.bool   
isql.help.scalar.date   
isql.help.scalar.numeric   
isql.help.scalar.text   
 

Uses of IBinaryScalar in isql.builder
 

Methods in isql.builder that return IBinaryScalar
 IBinaryScalar BinaryOperatorBuilder.buildBinaryOperator(java.lang.String operator)
           
 

Uses of IBinaryScalar in isql.expression
 

Constructors in isql.expression with parameters of type IBinaryScalar
DoubleExpression(IExpression a, IExpression b, IBinaryScalar operator)
           
 

Uses of IBinaryScalar in isql.help.scalar.bool
 

Subinterfaces of IBinaryScalar in isql.help.scalar.bool
 interface IBinaryBooleanScalar
          A predicate that calculates an operator boolean, boolean -> boolean
 

Uses of IBinaryScalar in isql.help.scalar.date
 

Subinterfaces of IBinaryScalar in isql.help.scalar.date
 interface IBinaryDateScalar
          A predicate that calculates an operator date, date -> date
 

Uses of IBinaryScalar in isql.help.scalar.numeric
 

Subinterfaces of IBinaryScalar in isql.help.scalar.numeric
 interface IBinaryNumericScalar
          for operators/function that need 2 input values and returns 1 value
 

Classes in isql.help.scalar.numeric that implement IBinaryScalar
 class DivideScalar
          predicate that operates the division between two numbers
 class DivScalar
          predicate that operates the integer division between two numbers
 class MinusScalar
          predicate that operates the subtraction between two numbers
 class ModScalar
          predicate that operates the module (mod) between two numbers
 class PlusScalar
          predicate that operates the sum between two numbers
 class PowScalar
          predicate that operates the power of one number by another one
 class TimesScalar
          predicate that operates the multiplications between two numbers
 

Uses of IBinaryScalar in isql.help.scalar.text
 

Subinterfaces of IBinaryScalar in isql.help.scalar.text
 interface IBinaryTextScalar
          A predicate that calculates an operator text, text -> text