Package | Description |
---|---|
org.apache.lucene.codecs |
Codecs API: API for customization of the encoding and structure of the index.
|
org.apache.lucene.search.join |
Support for index-time and query-time joins.
|
org.apache.lucene.util |
Some utility classes.
|
Modifier and Type | Field and Description |
---|---|
(package private) LongBitSet |
DocValuesConsumer.BitsFilteredTermsEnum.liveTerms |
Constructor and Description |
---|
BitsFilteredTermsEnum(TermsEnum in,
LongBitSet liveTerms) |
Modifier and Type | Field and Description |
---|---|
(package private) LongBitSet |
GlobalOrdinalsCollector.collectedOrds |
(package private) LongBitSet |
GlobalOrdinalsWithScoreCollector.collectedOrds |
private LongBitSet |
GlobalOrdinalsQuery.foundOrds |
(package private) LongBitSet |
GlobalOrdinalsQuery.OrdinalMapScorer.foundOrds |
(package private) LongBitSet |
GlobalOrdinalsQuery.SegmentOrdinalScorer.foundOrds |
Modifier and Type | Method and Description |
---|---|
LongBitSet |
GlobalOrdinalsCollector.getCollectorOrdinals() |
Constructor and Description |
---|
GlobalOrdinalsQuery(LongBitSet foundOrds,
java.lang.String joinField,
OrdinalMap globalOrds,
Query toQuery,
Query fromQuery,
java.lang.Object indexReaderContextId) |
OrdinalMapScorer(Weight weight,
float score,
LongBitSet foundOrds,
SortedDocValues values,
DocIdSetIterator approximationScorer,
LongValues segmentOrdToGlobalOrdLookup) |
SegmentOrdinalScorer(Weight weight,
float score,
LongBitSet foundOrds,
SortedDocValues values,
DocIdSetIterator approximationScorer) |
Modifier and Type | Method and Description |
---|---|
LongBitSet |
LongBitSet.clone() |
static LongBitSet |
LongBitSet.ensureCapacity(LongBitSet bits,
long numBits)
If the given
LongBitSet is large enough to hold
numBits+1 , returns the given bits, otherwise returns a new
LongBitSet which can hold the requested number of bits. |
Modifier and Type | Method and Description |
---|---|
void |
LongBitSet.and(LongBitSet other)
this = this AND other
|
void |
LongBitSet.andNot(LongBitSet other)
this = this AND NOT other
|
static LongBitSet |
LongBitSet.ensureCapacity(LongBitSet bits,
long numBits)
If the given
LongBitSet is large enough to hold
numBits+1 , returns the given bits, otherwise returns a new
LongBitSet which can hold the requested number of bits. |
boolean |
LongBitSet.intersects(LongBitSet other)
returns true if the sets have any elements in common
|
void |
LongBitSet.or(LongBitSet other)
this = this OR other
|
void |
LongBitSet.xor(LongBitSet other)
this = this XOR other
|