Uses of Class
org.apache.lucene.util.LongBitSet
Packages that use LongBitSet
-
Uses of LongBitSet in org.apache.lucene.util
Methods in org.apache.lucene.util that return LongBitSetModifier and TypeMethodDescriptionLongBitSet.clone()
static LongBitSet
LongBitSet.ensureCapacity
(LongBitSet bits, long numBits) If the givenLongBitSet
is large enough to holdnumBits
, 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 LongBitSetModifier and TypeMethodDescriptionvoid
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
, 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