Uses of Class
org.h2.index.IndexCondition
Packages that use IndexCondition
Package
Description
Various table index implementations, as well as cursors to navigate in an index.
Classes related to a table and table meta data.
-
Uses of IndexCondition in org.h2.index
Methods in org.h2.index that return IndexConditionModifier and TypeMethodDescriptionstatic IndexCondition
IndexCondition.get
(int compareType, ExpressionColumn column, Expression expression) Create an index condition with the given parameters.static IndexCondition
IndexCondition.getInList
(ExpressionColumn column, 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 IndexConditionModifier and TypeMethodDescriptionvoid
IndexCursor.find
(SessionLocal s, ArrayList<IndexCondition> indexConditions) Re-evaluate the start and end values of the index search for rows.int
IndexCondition.getMask
(ArrayList<IndexCondition> indexConditions) Get the comparison bit mask.void
IndexCursor.prepare
(SessionLocal s, 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 IndexConditionModifier and TypeFieldDescriptionprivate final 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 IndexConditionMethods in org.h2.table with parameters of type IndexConditionModifier and TypeMethodDescriptionvoid
TableFilter.addIndexCondition
(IndexCondition condition) Add an index condition.