Class BooleanWriter<T>
- java.lang.Object
-
- org.apache.flink.table.runtime.arrow.writers.ArrowFieldWriter<T>
-
- org.apache.flink.table.runtime.arrow.writers.BooleanWriter<T>
-
- Direct Known Subclasses:
BooleanWriter.BooleanWriterForArray
,BooleanWriter.BooleanWriterForRow
@Internal public abstract class BooleanWriter<T> extends ArrowFieldWriter<T>
ArrowFieldWriter
for Boolean.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
BooleanWriter.BooleanWriterForArray
BooleanWriter
forArrayData
input.static class
BooleanWriter.BooleanWriterForRow
BooleanWriter
forRowData
input.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
doWrite(T in, int ordinal)
Sets the field value as the field at the specified ordinal of the specified row.static BooleanWriter<ArrayData>
forArray(org.apache.arrow.vector.BitVector bitVector)
static BooleanWriter<RowData>
forRow(org.apache.arrow.vector.BitVector bitVector)
-
Methods inherited from class org.apache.flink.table.runtime.arrow.writers.ArrowFieldWriter
finish, getCount, getValueVector, reset, write
-
-
-
-
Method Detail
-
forRow
public static BooleanWriter<RowData> forRow(org.apache.arrow.vector.BitVector bitVector)
-
forArray
public static BooleanWriter<ArrayData> forArray(org.apache.arrow.vector.BitVector bitVector)
-
doWrite
public void doWrite(T in, int ordinal)
Description copied from class:ArrowFieldWriter
Sets the field value as the field at the specified ordinal of the specified row.- Specified by:
doWrite
in classArrowFieldWriter<T>
-
-