Searched defs:indexFilterType (Results 1 - 2 of 2) sorted by relevance

/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/
H A DIndexFilter.java311 private EntryIDSet evaluateFilterWithDiagnostic(IndexFilterType indexFilterType, SearchFilter filter) argument
317 return evaluateFilter(indexFilterType, filter);
320 private EntryIDSet evaluateFilter(IndexFilterType indexFilterType, SearchFilter filter) argument
326 return attributeIndex.evaluateFilter(indexQueryFactory, indexFilterType, filter, buffer, monitor);
332 indexFilterType.toString(), filter.getAttributeType().getNameOrOID()));
H A DAttributeIndex.java638 IndexFilterType indexFilterType = isLessOrEqual ? IndexFilterType.LESS_OR_EQUAL : IndexFilterType.GREATER_OR_EQUAL;
639 return evaluateFilter(indexQueryFactory, indexFilterType, filter, debugBuffer, monitor);
646 * @param indexFilterType the index type filter
656 static EntryIDSet evaluateFilter(IndexQueryFactory<IndexQuery> indexQueryFactory, IndexFilterType indexFilterType, argument
661 final IndexQuery indexQuery = getIndexQuery(indexQueryFactory, indexFilterType, filter);
662 return evaluateIndexQuery(indexQuery, indexFilterType.toString(), filter, debugBuffer, monitor);
672 IndexFilterType indexFilterType, SearchFilter filter) throws DecodeException
675 switch (indexFilterType)
671 getIndexQuery(IndexQueryFactory<IndexQuery> indexQueryFactory, IndexFilterType indexFilterType, SearchFilter filter) argument

Completed in 32 milliseconds