Uses of Class
de.siegmar.fastcsv.reader.CsvCallbackHandler
-
Packages that use CsvCallbackHandler Package Description de.siegmar.fastcsv.reader FastCSV reader. -
-
Uses of CsvCallbackHandler in de.siegmar.fastcsv.reader
Subclasses of CsvCallbackHandler in de.siegmar.fastcsv.reader Modifier and Type Class Description classAbstractBaseCsvCallbackHandler<T>Base class forCsvCallbackHandlerimplementations that handles their own field storage and record building.(package private) classAbstractCsvCallbackHandler<T>Abstract base class forCsvCallbackHandlerimplementations.classCsvRecordHandlerACsvCallbackHandlerimplementation that returns aCsvRecordfor each record.classNamedCsvRecordHandlerA callback handler that returns aNamedCsvRecordfor each record.classStringArrayHandlerACsvCallbackHandlerimplementation that returns the fields of each record as an array of Strings.Fields in de.siegmar.fastcsv.reader declared as CsvCallbackHandler Modifier and Type Field Description private CsvCallbackHandler<?>CsvParser. callbackHandlerprivate CsvCallbackHandler<T>CsvReader. callbackHandlerprivate CsvCallbackHandler<T>IndexedCsvReader. csvRecordHandlerMethods in de.siegmar.fastcsv.reader with parameters of type CsvCallbackHandler Modifier and Type Method Description <T> CsvReader<T>CsvReader.CsvReaderBuilder. build(CsvCallbackHandler<T> callbackHandler, java.io.Reader reader)Constructs a newCsvReaderfor the specified arguments.<T> CsvReader<T>CsvReader.CsvReaderBuilder. build(CsvCallbackHandler<T> callbackHandler, java.lang.String data)Constructs a newCsvReaderfor the specified arguments.<T> CsvReader<T>CsvReader.CsvReaderBuilder. build(CsvCallbackHandler<T> callbackHandler, java.nio.file.Path file)Constructs a newCsvReaderfor the specified file.<T> CsvReader<T>CsvReader.CsvReaderBuilder. build(CsvCallbackHandler<T> callbackHandler, java.nio.file.Path file, java.nio.charset.Charset charset)Constructs a newCsvReaderfor the specified arguments.<T> IndexedCsvReader<T>IndexedCsvReader.IndexedCsvReaderBuilder. build(CsvCallbackHandler<T> callbackHandler, java.nio.file.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, java.nio.file.Path file, java.nio.charset.Charset charset)Constructs a newIndexedCsvReaderfor the specified arguments.private <T> CsvReader<T>CsvReader.CsvReaderBuilder. newReader(CsvCallbackHandler<T> callbackHandler, CsvParser csvParser)Constructors in de.siegmar.fastcsv.reader with parameters of type CsvCallbackHandler Constructor Description CsvParser(char fieldSeparator, char quoteCharacter, CommentStrategy commentStrategy, char commentCharacter, boolean acceptCharsAfterQuotes, CsvCallbackHandler<?> callbackHandler, java.io.Reader reader)CsvParser(char fieldSeparator, char quoteCharacter, CommentStrategy commentStrategy, char commentCharacter, boolean acceptCharsAfterQuotes, CsvCallbackHandler<?> callbackHandler, java.lang.String data)CsvReader(CsvParser csvParser, CsvCallbackHandler<T> callbackHandler, CommentStrategy commentStrategy, boolean skipEmptyLines, boolean ignoreDifferentFieldCount)IndexedCsvReader(java.nio.file.Path file, java.nio.charset.Charset defaultCharset, char fieldSeparator, char quoteCharacter, CommentStrategy commentStrategy, char commentCharacter, boolean acceptCharsAfterQuotes, int pageSize, CsvCallbackHandler<T> csvRecordHandler, CsvIndex csvIndex, StatusListener statusListener)
-