public interface ColumnStore
The sequence of calls must be as follows:
acceptCell(java.lang.Object)endCells()createReader()| Modifier and Type | Method and Description |
|---|---|
void |
acceptCell(java.lang.Object value)
Writes a datum to this store.
|
ColumnReader |
createReader()
Returns an object that can provide random access to the
cells written to this store.
|
void |
endCells()
Signals that no more calls to
acceptCell will be made,
and that calls to createReader may be made. |
void acceptCell(java.lang.Object value)
throws java.io.IOException
value - the value to addjava.io.IOExceptionvoid endCells()
throws java.io.IOException
acceptCell will be made,
and that calls to createReader may be made.java.io.IOExceptionColumnReader createReader()