Uses of Class
org.apache.lucene.util.LongBitSet
-
Packages that use LongBitSet 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. -
-
Uses of LongBitSet in org.apache.lucene.codecs
Fields in org.apache.lucene.codecs declared as LongBitSet Modifier and Type Field Description (package private) LongBitSet
DocValuesConsumer.BitsFilteredTermsEnum. liveTerms
Constructors in org.apache.lucene.codecs with parameters of type LongBitSet Constructor Description BitsFilteredTermsEnum(TermsEnum in, LongBitSet liveTerms)
-
Uses of LongBitSet in org.apache.lucene.search.join
Fields in org.apache.lucene.search.join declared as LongBitSet Modifier and Type Field 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
Methods in org.apache.lucene.search.join that return LongBitSet Modifier and Type Method Description LongBitSet
GlobalOrdinalsCollector. getCollectorOrdinals()
Constructors in org.apache.lucene.search.join with parameters of type LongBitSet Constructor 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)
-
Uses of LongBitSet in org.apache.lucene.util
Methods in org.apache.lucene.util that return LongBitSet Modifier and Type Method Description LongBitSet
LongBitSet. clone()
static LongBitSet
LongBitSet. ensureCapacity(LongBitSet bits, long numBits)
If the givenLongBitSet
is large enough to holdnumBits+1
, returns the given bits, otherwise returns a newLongBitSet
which can hold the requested number of bits.Methods in org.apache.lucene.util with parameters of type LongBitSet Modifier and Type Method Description void
LongBitSet. and(LongBitSet other)
this = this AND othervoid
LongBitSet. andNot(LongBitSet other)
this = this AND NOT otherstatic LongBitSet
LongBitSet. ensureCapacity(LongBitSet bits, long numBits)
If the givenLongBitSet
is large enough to holdnumBits+1
, returns the given bits, otherwise returns a newLongBitSet
which can hold the requested number of bits.boolean
LongBitSet. intersects(LongBitSet other)
returns true if the sets have any elements in commonvoid
LongBitSet. or(LongBitSet other)
this = this OR othervoid
LongBitSet. xor(LongBitSet other)
this = this XOR other
-