Uses of Class
org.h2.index.IndexCondition

Packages that use IndexCondition
org.h2.index Various table index implementations, as well as cursors to navigate in an index. 
org.h2.table Classes related to a table and table meta data. 
 

Uses of IndexCondition in org.h2.index
 

Methods in org.h2.index that return IndexCondition
static IndexCondition IndexCondition.get(int compareType, ExpressionColumn column, Expression expression)
          Create an index condition with the given parameters.
static IndexCondition IndexCondition.getInList(ExpressionColumn column, java.util.List<Expression> list)
          Create an index condition with the compare type IN_LIST and with the given parameters.
static IndexCondition IndexCondition.getInQuery(ExpressionColumn column, Query query)
          Create an index condition with the compare type IN_QUERY and with the given parameters.
 

Method parameters in org.h2.index with type arguments of type IndexCondition
 void IndexCursor.find(Session s, java.util.ArrayList<IndexCondition> indexConditions)
          Re-evaluate the start and end values of the index search for rows.
 int IndexCondition.getMask(java.util.ArrayList<IndexCondition> indexConditions)
          Get the comparison bit mask.
 

Uses of IndexCondition in org.h2.table
 

Methods in org.h2.table with parameters of type IndexCondition
 void TableFilter.addIndexCondition(IndexCondition condition)
          Add an index condition.