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 CommentStrategyCsvIndex. commentStrategyThe comment strategy used when building this index.private CommentStrategyCsvReader. commentStrategyprivate CommentStrategyCsvReader.CsvReaderBuilder. commentStrategyprivate CommentStrategyIndexedCsvReader. commentStrategyprivate CommentStrategyIndexedCsvReader.IndexedCsvReaderBuilder. commentStrategyprivate CommentStrategyCsvParser. cStratMethods in de.siegmar.fastcsv.reader that return CommentStrategy Modifier and Type Method Description (package private) CommentStrategyCsvIndex. getCommentStrategy()static CommentStrategyCommentStrategy. 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.CsvReaderBuilderCsvReader.CsvReaderBuilder. commentStrategy(CommentStrategy commentStrategy)Sets the strategy that defines how (and if) commented lines should be handled (default:NONEas comments are not defined in RFC 4180).IndexedCsvReader.IndexedCsvReaderBuilderIndexedCsvReader.IndexedCsvReaderBuilder. commentStrategy(CommentStrategy commentStrategy)Sets the strategy that defines how (and if) commented lines should be handled (default:NONEas comments are not defined in RFC 4180).private static CsvIndexIndexedCsvReader. 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)
-