Package com.qfs.chunk
Interface IWritableTable
- All Superinterfaces:
ITable
- All Known Subinterfaces:
IAggregateStore,IChunkSet,IWritableByteRecordBlock,IWritableRecordBlock<RecordT>
- All Known Implementing Classes:
AColumnStore,AggregateStore,AppendOnlyByteRecordBlock,AWritableFixedSizeRecordBlock,ChunkSet,ChunkSetRecordBlock,EmptyAggregateStore,FilteredAggregateStoreView,OffsetRecordBlock,RecordBlock,ReplicatedAggregateStore,SingleRowWritableRecordBlock,SparseChunkSet
A table with an interface to write elements.
- Author:
- ActiveViam
-
Method Summary
Modifier and TypeMethodDescriptionvoidWrites anObjectinto the specified cell.voidwriteBoolean(int row, int column, boolean value) Writes a primitivebooleaninto the specified cell.voidwriteDouble(int row, int column, double value) Writes a primitivedoubleinto the specified cell.voidwriteFloat(int row, int column, float value) Writes a primitivefloatinto the specified cell.voidwriteInt(int row, int column, int value) Writes a primitiveintinto the specified cell.voidwriteLong(int row, int column, long value) Writes a primitivelonginto the specified cell.Methods inherited from interface com.qfs.chunk.ITable
isNull, read, readBoolean, readDouble, readFloat, readInt, readLong
-
Method Details
-
write
Writes anObjectinto the specified cell. The underlying data structure must support the storage of that data type.- Parameters:
row- the row of the written cellcolumn- the column of the written cellvalue- the value to write to this field
-
writeBoolean
void writeBoolean(int row, int column, boolean value) Writes a primitivebooleaninto the specified cell. The underlying data structure must support the storage of that data type.- Parameters:
row- the row of the written cellcolumn- the column of the written cellvalue- the value to write to this field
-
writeInt
void writeInt(int row, int column, int value) Writes a primitiveintinto the specified cell. The underlying data structure must support the storage of that data type.- Parameters:
row- the row of the written cellcolumn- the column of the written cellvalue- the value to write to this field
-
writeLong
void writeLong(int row, int column, long value) Writes a primitivelonginto the specified cell. The underlying data structure must support the storage of that data type.- Parameters:
row- the row of the written cellcolumn- the column of the written cellvalue- the value to write to this field
-
writeDouble
void writeDouble(int row, int column, double value) Writes a primitivedoubleinto the specified cell. The underlying data structure must support the storage of that data type.- Parameters:
row- the row of the written cellcolumn- the column of the written cellvalue- the value to write to this field
-
writeFloat
void writeFloat(int row, int column, float value) Writes a primitivefloatinto the specified cell. The underlying data structure must support the storage of that data type.- Parameters:
row- the row of the written cellcolumn- the column of the written cellvalue- the value to write to this field
-