Uses of Class
de.siegmar.fastcsv.reader.CsvCallbackHandler
Packages that use CsvCallbackHandler
-
Uses of CsvCallbackHandler in de.siegmar.fastcsv.reader
Subclasses of CsvCallbackHandler in de.siegmar.fastcsv.readerModifier and TypeClassDescriptionclassBase class forCsvCallbackHandlerimplementations that handles their own field storage and record building.final classACsvCallbackHandlerimplementation that returns aCsvRecordfor each record.final classA callback handler that returns aNamedCsvRecordfor each record.final classACsvCallbackHandlerimplementation that returns the fields of each record as an array of Strings.Methods in de.siegmar.fastcsv.reader with parameters of type CsvCallbackHandlerModifier and TypeMethodDescription<T> CsvReader<T> CsvReader.CsvReaderBuilder.build(CsvCallbackHandler<T> callbackHandler, Reader reader) Constructs a newCsvReaderfor the specified arguments.<T> CsvReader<T> CsvReader.CsvReaderBuilder.build(CsvCallbackHandler<T> callbackHandler, String data) Constructs a newCsvReaderfor the specified arguments.<T> CsvReader<T> CsvReader.CsvReaderBuilder.build(CsvCallbackHandler<T> callbackHandler, Path file) Constructs a newCsvReaderfor the specified file.<T> CsvReader<T> CsvReader.CsvReaderBuilder.build(CsvCallbackHandler<T> callbackHandler, Path file, Charset charset) Constructs a newCsvReaderfor the specified arguments.<T> IndexedCsvReader<T> IndexedCsvReader.IndexedCsvReaderBuilder.build(CsvCallbackHandler<T> callbackHandler, Path file) Constructs a newIndexedCsvReaderfor the specified callback handler and path using UTF-8 as the character set.<T> IndexedCsvReader<T> IndexedCsvReader.IndexedCsvReaderBuilder.build(CsvCallbackHandler<T> callbackHandler, Path file, Charset charset) Constructs a newIndexedCsvReaderfor the specified arguments.