Uses of Class
org.apache.lucene.util.FixedBitSet
-
Packages that use FixedBitSet Package Description org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.util Some utility classes. -
-
Uses of FixedBitSet in org.apache.lucene.codecs
Methods in org.apache.lucene.codecs with parameters of type FixedBitSet Modifier and Type Method Description TermStats
PostingsConsumer. merge(MergeState mergeState, FieldInfo.IndexOptions indexOptions, DocsEnum postings, FixedBitSet visitedDocs)
Default merge impl: append documents, mapping around deletes -
Uses of FixedBitSet in org.apache.lucene.util
Methods in org.apache.lucene.util that return FixedBitSet Modifier and Type Method Description FixedBitSet
FixedBitSet. clone()
static FixedBitSet
FixedBitSet. ensureCapacity(FixedBitSet bits, int numBits)
If the givenFixedBitSet
is large enough to holdnumBits
, returns the given bits, otherwise returns a newFixedBitSet
which can hold the requested number of bits.Methods in org.apache.lucene.util with parameters of type FixedBitSet Modifier and Type Method Description void
FixedBitSet. and(FixedBitSet other)
this = this AND othervoid
FixedBitSet. andNot(FixedBitSet other)
this = this AND NOT otherstatic long
FixedBitSet. andNotCount(FixedBitSet a, FixedBitSet b)
Returns the popcount or cardinality of "a and not b" or "intersection(a, not(b))".static FixedBitSet
FixedBitSet. ensureCapacity(FixedBitSet bits, int numBits)
If the givenFixedBitSet
is large enough to holdnumBits
, returns the given bits, otherwise returns a newFixedBitSet
which can hold the requested number of bits.static long
FixedBitSet. intersectionCount(FixedBitSet a, FixedBitSet b)
Returns the popcount or cardinality of the intersection of the two sets.boolean
FixedBitSet. intersects(FixedBitSet other)
returns true if the sets have any elements in commonvoid
FixedBitSet. or(FixedBitSet other)
this = this OR otherstatic long
FixedBitSet. unionCount(FixedBitSet a, FixedBitSet b)
Returns the popcount or cardinality of the union of the two sets.void
FixedBitSet. xor(FixedBitSet other)
this = this XOR otherConstructors in org.apache.lucene.util with parameters of type FixedBitSet Constructor Description FixedBitSetIterator(FixedBitSet bits)
Creates an iterator over the givenFixedBitSet
.
-