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 IndexConditionIndexCondition.get(int compareType, ExpressionColumn column, Expression expression) Create an index condition with the given parameters.static IndexConditionIndexCondition.getInList(ExpressionColumn column, List<Expression> list) Create an index condition with the compare type IN_LIST and with the given parameters.static IndexConditionIndexCondition.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 TypeMethodDescriptionvoidIndexCursor.find(SessionLocal s, ArrayList<IndexCondition> indexConditions) Re-evaluate the start and end values of the index search for rows.intIndexCondition.getMask(ArrayList<IndexCondition> indexConditions) Get the comparison bit mask.voidIndexCursor.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.indexConditionsThe 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 TypeMethodDescriptionvoidTableFilter.addIndexCondition(IndexCondition condition) Add an index condition.