Uses of Class
org.h2.index.IndexCondition
-
Packages that use IndexCondition Package Description 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 Modifier and Type Method Description 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 Modifier and Type Method Description void
IndexCursor. find(SessionLocal 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.void
IndexCursor. prepare(SessionLocal s, java.util.ArrayList<IndexCondition> indexConditions)
Prepare this index cursor to make a lookup in index. -
Uses of IndexCondition in org.h2.table
Fields in org.h2.table with type parameters of type IndexCondition Modifier and Type Field Description private java.util.ArrayList<IndexCondition>
TableFilter. indexConditions
The index conditions used for direct index lookup (start or end).Methods in org.h2.table that return types with arguments of type IndexCondition Modifier and Type Method Description java.util.ArrayList<IndexCondition>
TableFilter. getIndexConditions()
Methods in org.h2.table with parameters of type IndexCondition Modifier and Type Method Description void
TableFilter. addIndexCondition(IndexCondition condition)
Add an index condition.
-