Interface WritableTimestampVector
-
- All Superinterfaces:
ColumnVector,TimestampColumnVector,WritableColumnVector
- All Known Implementing Classes:
HeapTimestampVector
@Internal public interface WritableTimestampVector extends WritableColumnVector, TimestampColumnVector
WritableTimestampColumnVector.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidfill(TimestampData value)Fill the column vector with the provided value.voidsetTimestamp(int rowId, TimestampData timestamp)SetTimestampDataat rowId with the provided value.-
Methods inherited from interface org.apache.flink.table.data.columnar.vector.ColumnVector
isNullAt
-
Methods inherited from interface org.apache.flink.table.data.columnar.vector.TimestampColumnVector
getTimestamp
-
Methods inherited from interface org.apache.flink.table.data.columnar.vector.writable.WritableColumnVector
fillWithNulls, getDictionaryIds, hasDictionary, reserveDictionaryIds, reset, setDictionary, setNullAt, setNulls
-
-
-
-
Method Detail
-
setTimestamp
void setTimestamp(int rowId, TimestampData timestamp)SetTimestampDataat rowId with the provided value.
-
fill
void fill(TimestampData value)
Fill the column vector with the provided value.
-
-