
de.siegmar.fastcsv.reader.CommentStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastcsv Show documentation
Show all versions of fastcsv Show documentation
Lightning-fast, dependency-free CSV library that conforms to RFC standards.
The newest version!
package de.siegmar.fastcsv.reader;
/// This is an enumeration that defines the strategies for handling comments in CSV data that does not conform to RFC.
public enum CommentStrategy {
/// This strategy does not detect comments. It treats everything as regular fields.
NONE,
/// This strategy detects comments but does not return the commented lines.
SKIP,
/// This strategy detects and returns the commented lines. The entire line is treated as one field.
/// The comment character itself is removed.
READ
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy