Class WrappedImmutableBitSetBitmap
- java.lang.Object
-
- org.apache.druid.collections.bitmap.WrappedImmutableBitSetBitmap
-
- All Implemented Interfaces:
ImmutableBitmap
- Direct Known Subclasses:
WrappedBitSetBitmap
public class WrappedImmutableBitSetBitmap extends Object implements ImmutableBitmap
WrappedImmutableBitSetBitmap implements ImmutableBitmap for java.util.BitSet
-
-
Constructor Summary
Constructors Constructor Description WrappedImmutableBitSetBitmap()WrappedImmutableBitSetBitmap(ByteBuffer byteBuffer)WrappedImmutableBitSetBitmap(BitSet bitmap)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanget(int value)Returns true if the bit at position value is setImmutableBitmapintersection(ImmutableBitmap otherBitmap)Compute the bitwise-and of this bitmap with another bitmap.booleanisEmpty()org.roaringbitmap.IntIteratoriterator()intsize()byte[]toBytes()ImmutableBitmapunion(ImmutableBitmap otherBitmap)Compute the bitwise-or of this bitmap with another bitmap.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.druid.collections.bitmap.ImmutableBitmap
batchIterator, peekableIterator
-
-
-
-
Field Detail
-
bitmap
protected final BitSet bitmap
-
-
Constructor Detail
-
WrappedImmutableBitSetBitmap
public WrappedImmutableBitSetBitmap(BitSet bitmap)
-
WrappedImmutableBitSetBitmap
public WrappedImmutableBitSetBitmap()
-
WrappedImmutableBitSetBitmap
public WrappedImmutableBitSetBitmap(ByteBuffer byteBuffer)
-
-
Method Detail
-
iterator
public org.roaringbitmap.IntIterator iterator()
- Specified by:
iteratorin interfaceImmutableBitmap- Returns:
- an iterator over the set bits of this bitmap
-
get
public boolean get(int value)
Description copied from interface:ImmutableBitmapReturns true if the bit at position value is set- Specified by:
getin interfaceImmutableBitmap- Parameters:
value- the position to check- Returns:
- true if bit is set
-
size
public int size()
- Specified by:
sizein interfaceImmutableBitmap- Returns:
- The number of bits set to true in this bitmap
-
toBytes
public byte[] toBytes()
- Specified by:
toBytesin interfaceImmutableBitmap
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmptyin interfaceImmutableBitmap- Returns:
- True if this bitmap is empty (contains no set bit)
-
union
public ImmutableBitmap union(ImmutableBitmap otherBitmap)
Description copied from interface:ImmutableBitmapCompute the bitwise-or of this bitmap with another bitmap. A new bitmap is generated. Note that the other bitmap should be of the same class instance.- Specified by:
unionin interfaceImmutableBitmap- Parameters:
otherBitmap- other bitmap
-
intersection
public ImmutableBitmap intersection(ImmutableBitmap otherBitmap)
Description copied from interface:ImmutableBitmapCompute the bitwise-and of this bitmap with another bitmap. A new bitmap is generated. Note that the other bitmap should be of the same class instance.- Specified by:
intersectionin interfaceImmutableBitmap- Parameters:
otherBitmap- other bitmap
-
-