Uses of Class
de.siegmar.fastcsv.reader.CommentStrategy
-
Packages that use CommentStrategy Package Description de.siegmar.fastcsv.reader FastCSV reader. -
-
Uses of CommentStrategy in de.siegmar.fastcsv.reader
Fields in de.siegmar.fastcsv.reader declared as CommentStrategy Modifier and Type Field Description private CommentStrategy
CsvIndex. commentStrategy
The comment strategy used when building this index.private CommentStrategy
CsvReader. commentStrategy
private CommentStrategy
CsvReader.CsvReaderBuilder. commentStrategy
private CommentStrategy
IndexedCsvReader. commentStrategy
private CommentStrategy
IndexedCsvReader.IndexedCsvReaderBuilder. commentStrategy
private CommentStrategy
CsvParser. cStrat
Methods in de.siegmar.fastcsv.reader that return CommentStrategy Modifier and Type Method Description (package private) CommentStrategy
CsvIndex. getCommentStrategy()
static CommentStrategy
CommentStrategy. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CommentStrategy[]
CommentStrategy. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in de.siegmar.fastcsv.reader with parameters of type CommentStrategy Modifier and Type Method Description CsvReader.CsvReaderBuilder
CsvReader.CsvReaderBuilder. commentStrategy(CommentStrategy commentStrategy)
Sets the strategy that defines how (and if) commented lines should be handled (default:NONE
as comments are not defined in RFC 4180).IndexedCsvReader.IndexedCsvReaderBuilder
IndexedCsvReader.IndexedCsvReaderBuilder. commentStrategy(CommentStrategy commentStrategy)
Sets the strategy that defines how (and if) commented lines should be handled (default:NONE
as comments are not defined in RFC 4180).private static CsvIndex
IndexedCsvReader. validatePrebuiltIndex(java.nio.file.Path file, int bomHeaderLength, byte fieldSeparator, byte quoteCharacter, CommentStrategy commentStrategy, byte commentCharacter, CsvIndex csvIndex)
Constructors in de.siegmar.fastcsv.reader with parameters of type CommentStrategy Constructor Description CsvIndex(int bomHeaderLength, long fileSize, byte fieldSeparator, byte quoteCharacter, CommentStrategy commentStrategy, byte commentCharacter, long recordCounter, java.util.List<CsvIndex.CsvPage> pages)
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)
CsvScanner(java.nio.channels.ReadableByteChannel channel, int bomHeaderLength, byte fieldSeparator, byte quoteCharacter, CommentStrategy commentStrategy, byte commentCharacter, CsvScanner.CsvListener csvListener)
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)
-