Uses of Class
org.apache.lucene.util.LongBitSet
-
Packages that use LongBitSet Package Description org.apache.lucene.util org.elasticsearch.search.aggregations.bucket.terms -
-
Uses of LongBitSet in org.apache.lucene.util
Methods in org.apache.lucene.util that return LongBitSet Modifier and Type Method Description LongBitSetLongBitSet. clone()static LongBitSetLongBitSet. ensureCapacity(LongBitSet bits, long numBits)If the givenLongBitSetis large enough to holdnumBits+1, returns the given bits, otherwise returns a newLongBitSetwhich can hold the requested number of bits.Methods in org.apache.lucene.util with parameters of type LongBitSet Modifier and Type Method Description voidLongBitSet. and(LongBitSet other)this = this AND othervoidLongBitSet. andNot(LongBitSet other)this = this AND NOT otherstatic LongBitSetLongBitSet. ensureCapacity(LongBitSet bits, long numBits)If the givenLongBitSetis large enough to holdnumBits+1, returns the given bits, otherwise returns a newLongBitSetwhich can hold the requested number of bits.booleanLongBitSet. intersects(LongBitSet other)returns true if the sets have any elements in commonvoidLongBitSet. or(LongBitSet other)this = this OR othervoidLongBitSet. xor(LongBitSet other)this = this XOR other -
Uses of LongBitSet in org.elasticsearch.search.aggregations.bucket.terms
Fields in org.elasticsearch.search.aggregations.bucket.terms declared as LongBitSet Modifier and Type Field Description protected LongBitSetGlobalOrdinalsStringTermsAggregator. acceptedGlobalOrdinalsMethods in org.elasticsearch.search.aggregations.bucket.terms that return LongBitSet Modifier and Type Method Description abstract LongBitSetIncludeExclude.OrdinalsFilter. acceptedGlobalOrdinals(SortedSetDocValues globalOrdinals)
-