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 voidaccept(char[] data, int offset, int length)voidbeginTable(String tableName, XGettingSequence<String> columnNames, XGettingList<String> columnTypes)voidcompleteRow()Calls without collected values (e.g.voidcompleteTable()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:
 acceptin 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. 
 -