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.(package private) classAbstract base class forCsvCallbackHandlerimplementations.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.Fields in de.siegmar.fastcsv.reader declared as CsvCallbackHandlerModifier and TypeFieldDescriptionprivate final CsvCallbackHandler<?> CsvParser.callbackHandlerprivate final CsvCallbackHandler<T> CsvReader.callbackHandlerprivate final CsvCallbackHandler<T> IndexedCsvReader.csvRecordHandlerMethods 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.private <T> CsvReader<T> CsvReader.CsvReaderBuilder.newReader(CsvCallbackHandler<T> callbackHandler, CsvParser csvParser) Constructors in de.siegmar.fastcsv.reader with parameters of type CsvCallbackHandlerModifierConstructorDescription(package private)CsvParser(char fieldSeparator, char quoteCharacter, CommentStrategy commentStrategy, char commentCharacter, boolean acceptCharsAfterQuotes, CsvCallbackHandler<?> callbackHandler, Reader reader) (package private)CsvParser(char fieldSeparator, char quoteCharacter, CommentStrategy commentStrategy, char commentCharacter, boolean acceptCharsAfterQuotes, CsvCallbackHandler<?> callbackHandler, String data) (package private)CsvReader(CsvParser csvParser, CsvCallbackHandler<T> callbackHandler, CommentStrategy commentStrategy, boolean skipEmptyLines, boolean ignoreDifferentFieldCount) (package private)IndexedCsvReader(Path file, Charset defaultCharset, char fieldSeparator, char quoteCharacter, CommentStrategy commentStrategy, char commentCharacter, boolean acceptCharsAfterQuotes, int pageSize, CsvCallbackHandler<T> csvRecordHandler, CsvIndex csvIndex, StatusListener statusListener)