Class MutableNullValueVector
- java.lang.Object
-
- org.apache.pinot.segment.local.realtime.impl.nullvalue.MutableNullValueVector
-
- All Implemented Interfaces:
Closeable,AutoCloseable,IndexReader,NullValueVectorReader
public class MutableNullValueVector extends Object implements NullValueVectorReader
Mutable null value vector (for CONSUMING segment).
-
-
Constructor Summary
Constructors Constructor Description MutableNullValueVector()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.roaringbitmap.buffer.ImmutableRoaringBitmapgetNullBitmap()booleanisNull(int docId)voidsetNull(int docId)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.pinot.segment.spi.index.reader.NullValueVectorReader
close
-
-
-
-
Method Detail
-
setNull
public void setNull(int docId)
-
isNull
public boolean isNull(int docId)
- Specified by:
isNullin interfaceNullValueVectorReader
-
getNullBitmap
public org.roaringbitmap.buffer.ImmutableRoaringBitmap getNullBitmap()
- Specified by:
getNullBitmapin interfaceNullValueVectorReader
-
-