Package org.alfresco.solr.query
Class HybridBitSet
- java.lang.Object
-
- org.alfresco.solr.query.HybridBitSet
-
- Direct Known Subclasses:
EmptyHybridBitSet
public class HybridBitSet extends java.lang.ObjectThe HybridBitSet is a random access (doesn't support iteration) BitSet implementation that uses a FixedBitSet for the first N bits and a HashSet for higher bits. This is designed to provide a balance between the high performance of FixedBitSet and the efficient sparse behavior of a HashSet.
-
-
Constructor Summary
Constructors Constructor Description HybridBitSet()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanget(long bit)voidset(long bit)
-