Uses of Interface
isql.IPredicate

Packages that use IPredicate
isql   
isql.builder   
isql.predicate   
 

Uses of IPredicate in isql
 

Methods in isql that return IPredicate
 IPredicate ClausesBuilder.buildWhere(ColumnValues valuesOriginal, ISQLSelectParser.ISearchCondition where)
          Returns the where clause in form of a predicate tree
 

Uses of IPredicate in isql.builder
 

Methods in isql.builder that return IPredicate
 IPredicate WhereBuilder.build(ISQLSelectParser.ISearchCondition condition)
          The method to call to evaluate a whole where clause
 

Uses of IPredicate in isql.predicate
 

Classes in isql.predicate that implement IPredicate
 class AndPredicate
          It is builds a view resulting from the "AND" of two predicates in the WHERE clause
 class ComparisonPredicate
          It builds the view for a single comparison in the WHERE clause (a = b, a <> b...)
 class InPredicate
          In clause.
 class LikePredicate
          exp LIKE exp can be a column or an expression that involves table columns or a constant (which does actually not make so much sense)
 class OrPredicate
          It is builds a view resulting from the "OR" of two predicates in the WHERE clause
 

Constructor parameters in isql.predicate with type arguments of type IPredicate
AndPredicate(java.util.List<IPredicate> lstPredicate, ColumnValues values)
           
DoublePredicate(java.util.List<IPredicate> lstPredicate, isql.predicate.IMergeRows mergeRows, ColumnValues values)
           
OrPredicate(java.util.List<IPredicate> lstPredicate, ColumnValues values)