Package org.apache.lucene.search.join
Class BlockJoinSelector
java.lang.Object
org.apache.lucene.search.join.BlockJoinSelector
Select a value from a block of documents.
- NOTE: This API is for internal purposes only and might change in incompatible ways in the next release.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enumType of selection to perform. -
Method Summary
Modifier and TypeMethodDescriptionprotected static BitSetIteratorcreates an iterator for the given bitsetstatic NumericDocValueswrap(NumericDocValues values, BlockJoinSelector.Type selection, BitSet parents, DocIdSetIterator children) Wraps the providedNumericDocValues, iterating over only child documents, in order to only select one value per parent among itschildrenusing the configuredselectiontype.static NumericDocValueswrap(NumericDocValues values, BlockJoinSelector.Type selection, BitSet parents, DocIdSetIterator children, Long missingValue) Wraps the providedNumericDocValues, iterating over only child documents, in order to only select one value per parent among itschildrenusing the configuredselectiontype.static SortedDocValueswrap(SortedDocValues values, BlockJoinSelector.Type selection, BitSet parents, DocIdSetIterator children, boolean sortMissingLast) Wraps the providedSortedDocValuesin order to only select one value per parent among itschildrenusing the configuredselectiontype.static NumericDocValueswrap(SortedNumericDocValues sortedNumerics, BlockJoinSelector.Type selection, BitSet parents, DocIdSetIterator children, Long childMissingValue) Wraps the providedSortedNumericDocValuesin order to only select one value per parent among itschildrenusing the configuredselectiontype.static SortedDocValueswrap(SortedSetDocValues sortedSet, BlockJoinSelector.Type selection, BitSet parents, DocIdSetIterator children, boolean sortMissingLast) Wraps the providedSortedSetDocValuesin order to only select one value per parent among itschildrenusing the configuredselectiontype.static BitsReturn aBitsinstance that returns true if, and only if, any of the children of the given parent document has a value.
-
Method Details
-
wrap
Return aBitsinstance that returns true if, and only if, any of the children of the given parent document has a value. -
wrap
public static SortedDocValues wrap(SortedSetDocValues sortedSet, BlockJoinSelector.Type selection, BitSet parents, DocIdSetIterator children, boolean sortMissingLast) Wraps the providedSortedSetDocValuesin order to only select one value per parent among itschildrenusing the configuredselectiontype. When a parent has children with missing values, we sort missing values according tosortMissingLast. -
wrap
public static SortedDocValues wrap(SortedDocValues values, BlockJoinSelector.Type selection, BitSet parents, DocIdSetIterator children, boolean sortMissingLast) Wraps the providedSortedDocValuesin order to only select one value per parent among itschildrenusing the configuredselectiontype. When a parent has children with missing values, we sort missing values according tosortMissingLast. -
toIter
creates an iterator for the given bitset -
wrap
public static NumericDocValues wrap(SortedNumericDocValues sortedNumerics, BlockJoinSelector.Type selection, BitSet parents, DocIdSetIterator children, Long childMissingValue) Wraps the providedSortedNumericDocValuesin order to only select one value per parent among itschildrenusing the configuredselectiontype. When a parent has children with missing values,childMissingValueparticipates in the min/max selection. -
wrap
public static NumericDocValues wrap(NumericDocValues values, BlockJoinSelector.Type selection, BitSet parents, DocIdSetIterator children) Wraps the providedNumericDocValues, iterating over only child documents, in order to only select one value per parent among itschildrenusing the configuredselectiontype. -
wrap
public static NumericDocValues wrap(NumericDocValues values, BlockJoinSelector.Type selection, BitSet parents, DocIdSetIterator children, Long missingValue) Wraps the providedNumericDocValues, iterating over only child documents, in order to only select one value per parent among itschildrenusing the configuredselectiontype. When a parent has children with missing values,missingValueparticipates in the min/max selection.
-