Uses of Enum
org.apache.lucene.search.join.BlockJoinSelector.Type

  • Uses of BlockJoinSelector.Type in org.apache.lucene.search.join

    Modifier and Type
    Method
    Description
    BlockJoinSelector.Type.valueOf(String name)
    Returns the enum constant of this type with the specified name.
    BlockJoinSelector.Type.values()
    Returns an array containing the constants of this enum type, in the order they are declared.
    Methods in org.apache.lucene.search.join with parameters of type BlockJoinSelector.Type
    Modifier and Type
    Method
    Description
    static org.apache.lucene.index.NumericDocValues
    BlockJoinSelector.wrap(org.apache.lucene.index.NumericDocValues values, BlockJoinSelector.Type selection, org.apache.lucene.util.BitSet parents, org.apache.lucene.search.DocIdSetIterator children)
    Wraps the provided NumericDocValues, iterating over only child documents, in order to only select one value per parent among its children using the configured selection type.
    static org.apache.lucene.index.NumericDocValues
    BlockJoinSelector.wrap(org.apache.lucene.index.NumericDocValues values, BlockJoinSelector.Type selection, org.apache.lucene.util.BitSet parents, org.apache.lucene.util.BitSet children)
    Deprecated.
    static org.apache.lucene.index.SortedDocValues
    BlockJoinSelector.wrap(org.apache.lucene.index.SortedDocValues values, BlockJoinSelector.Type selection, org.apache.lucene.util.BitSet parents, org.apache.lucene.search.DocIdSetIterator children)
    Wraps the provided SortedDocValues in order to only select one value per parent among its children using the configured selection type.
    static org.apache.lucene.index.SortedDocValues
    BlockJoinSelector.wrap(org.apache.lucene.index.SortedDocValues values, BlockJoinSelector.Type selection, org.apache.lucene.util.BitSet parents, org.apache.lucene.util.BitSet children)
    Deprecated.
    static org.apache.lucene.index.NumericDocValues
    BlockJoinSelector.wrap(org.apache.lucene.index.SortedNumericDocValues sortedNumerics, BlockJoinSelector.Type selection, org.apache.lucene.util.BitSet parents, org.apache.lucene.search.DocIdSetIterator children)
    Wraps the provided SortedNumericDocValues in order to only select one value per parent among its children using the configured selection type.
    static org.apache.lucene.index.NumericDocValues
    BlockJoinSelector.wrap(org.apache.lucene.index.SortedNumericDocValues sortedNumerics, BlockJoinSelector.Type selection, org.apache.lucene.util.BitSet parents, org.apache.lucene.util.BitSet children)
    Deprecated.
    static org.apache.lucene.index.SortedDocValues
    BlockJoinSelector.wrap(org.apache.lucene.index.SortedSetDocValues sortedSet, BlockJoinSelector.Type selection, org.apache.lucene.util.BitSet parents, org.apache.lucene.search.DocIdSetIterator children)
    Wraps the provided SortedSetDocValues in order to only select one value per parent among its children using the configured selection type.