Uses of Enum
de.siegmar.fastcsv.reader.CommentStrategy
Packages that use CommentStrategy
-
Uses of CommentStrategy in de.siegmar.fastcsv.reader
Fields in de.siegmar.fastcsv.reader declared as CommentStrategyModifier and TypeFieldDescriptionprivate final CommentStrategy
CsvIndex.commentStrategy
The comment strategy used when building this index.private final CommentStrategy
CsvReader.commentStrategy
private CommentStrategy
CsvReader.CsvReaderBuilder.commentStrategy
private final CommentStrategy
IndexedCsvReader.commentStrategy
private CommentStrategy
IndexedCsvReader.IndexedCsvReaderBuilder.commentStrategy
private final CommentStrategy
CsvParser.cStrat
Methods in de.siegmar.fastcsv.reader that return CommentStrategyModifier and TypeMethodDescription(package private) CommentStrategy
CsvIndex.getCommentStrategy()
static CommentStrategy
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 CommentStrategyModifier and TypeMethodDescriptionCsvReader.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.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
(Path file, int bomHeaderLength, byte fieldSeparator, byte quoteCharacter, CommentStrategy commentStrategy, byte commentCharacter, CsvIndex csvIndex) Constructors in de.siegmar.fastcsv.reader with parameters of type CommentStrategyModifierConstructorDescription(package private)
CsvIndex
(int bomHeaderLength, long fileSize, byte fieldSeparator, byte quoteCharacter, CommentStrategy commentStrategy, byte commentCharacter, long recordCounter, List<CsvIndex.CsvPage> pages) (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)
CsvScanner
(ReadableByteChannel channel, int bomHeaderLength, byte fieldSeparator, byte quoteCharacter, CommentStrategy commentStrategy, byte commentCharacter, CsvScanner.CsvListener csvListener) (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)