Package one.microstream.util.xcsv
Interface XCsvRowCollector
- All Superinterfaces:
_charRangeProcedure
- All Known Subinterfaces:
XCsvContentCollector
- All Known Implementing Classes:
ConfigEntryAggregator
,StorageDataConverterTypeCsvToBinary.Default
,XCsvContentBuilderCharArray.TableCollector
,XCsvEntityCollector
public interface XCsvRowCollector extends _charRangeProcedure
-
Method Summary
Modifier and Type Method Description void
accept(char[] data, int offset, int length)
void
beginTable(String tableName, XGettingSequence<String> columnNames, XGettingList<String> columnTypes)
void
completeRow()
Calls without collected values (e.g.void
completeTable()
Calls without collected rows (e.g.
-
Method Details
-
beginTable
void beginTable(String tableName, XGettingSequence<String> columnNames, XGettingList<String> columnTypes) -
accept
void accept(char[] data, int offset, int length)- Specified by:
accept
in interface_charRangeProcedure
-
completeRow
void completeRow()Calls without collected values (e.g. repeated calls) may not have undesired effects. -
completeTable
void completeTable()Calls without collected rows (e.g. repeated calls) may not have undesired effects.
-