Uses of Interface
isql.IComparison

Packages that use IComparison
isql.builder   
isql.comparison   
isql.expression   
isql.predicate   
 

Uses of IComparison in isql.builder
 

Methods in isql.builder that return IComparison
static IComparison ComparisonBuilder.buildComparisonOperator(java.lang.String operator, boolean negated)
          Builds a class that contains the algorithm to handle a specific comparison operator (=, <>, <, >...)
 

Uses of IComparison in isql.comparison
 

Classes in isql.comparison that implement IComparison
 class Different
          Used as predicate to check if two array elements are different
 class Equal
          Used as predicate to check if two array elements are equal
 class Greater
          Used as predicate to check if element a is greater than element b
 class GreaterOrEqual
          Used as predicate to check if element a is greater or equal than element b
 class Less
          Used as predicate to check if element a is smaller than element b
 class LessOrEqual
          Used as predicate to check if element a is smaller or equal than element b
 

Uses of IComparison in isql.expression
 

Constructors in isql.expression with parameters of type IComparison
When(IComparison operator, IConstant against)
          Constructor
 

Uses of IComparison in isql.predicate
 

Methods in isql.predicate with parameters of type IComparison
static void ComparisonPredicate.fillViewMaps(java.lang.Object[] arrA, java.lang.Object[] arrB, WhereView viewA, WhereView viewB, IComparison comparison)
          Fills the views of A and B with the indices of the columns for the rows for which the comparison has success
 

Constructors in isql.predicate with parameters of type IComparison
ComparisonPredicate(IExpression a, IExpression b, IComparison comparison)