Package one.microstream.util.csv
Interface CsvRowCollector
-
- All Superinterfaces:
_charRangeProcedure
- All Known Subinterfaces:
CsvContentCollector
- All Known Implementing Classes:
ConfigEntryAggregator,CsvContentBuilderCharArray.TableCollector,CsvEntityCollector,StorageDataConverterTypeCsvToBinary.Default
public interface CsvRowCollector 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 Detail
-
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.
-
-