All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.siegmar.fastcsv.reader.CommentStrategy Maven / Gradle / Ivy

Go to download

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