Class RowBatch.BlobColumn
java.lang.Object
com.illumon.iris.db.tables.dataimport.RowBatch.Column
com.illumon.iris.db.tables.dataimport.RowBatch.BlobColumn
- Enclosing class:
- RowBatch
public final class RowBatch.BlobColumn extends RowBatch.Column
RowBatch.RawColumn
subclass that represents raw byte data presented as ByteBuffer
instances.-
Method Summary
Modifier and Type Method Description ByteBuffer
get(int rowIndex)
Materialize the value at the supplied row index as aByteBuffer
.Methods inherited from class com.illumon.iris.db.tables.dataimport.RowBatch.Column
isConstant, isPresent
-
Method Details
-
get
Materialize the value at the supplied row index as aByteBuffer
. Note that callers should be very careful to avoid mutating the result, which is intentionally neither read-only nor a restricted slice.- Parameters:
rowIndex
- The row index to materialize- Returns:
- A
ByteBuffer
representation of the row
-