Uses of Enum
de.siegmar.fastcsv.reader.CommentStrategy
Packages that use CommentStrategy
-
Uses of CommentStrategy in de.siegmar.fastcsv.reader
Subclasses with type arguments of type CommentStrategy in de.siegmar.fastcsv.readerModifier and TypeClassDescriptionenumThis is an enumeration that defines the strategies for handling comments in CSV data that does not conform to RFC.Fields in de.siegmar.fastcsv.reader declared as CommentStrategyModifier and TypeFieldDescriptionprivate final CommentStrategyCsvIndex.commentStrategyThe comment strategy used when building this index.private final CommentStrategyCsvReader.commentStrategyprivate CommentStrategyCsvReader.CsvReaderBuilder.commentStrategyprivate final CommentStrategyIndexedCsvReader.commentStrategyprivate CommentStrategyIndexedCsvReader.IndexedCsvReaderBuilder.commentStrategyprivate final CommentStrategyCsvParser.cStratMethods in de.siegmar.fastcsv.reader that return CommentStrategyModifier and TypeMethodDescription(package private) CommentStrategyCsvIndex.getCommentStrategy()static CommentStrategyReturns 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:CommentStrategy.NONEas 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:CommentStrategy.NONEas comments are not defined in RFC 4180).private static CsvIndexIndexedCsvReader.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)