com.opencsv.CSVReaderNullFieldIndicator Maven / Gradle / Ivy
package com.opencsv;
/**
* Enumeration used to tell the CSVParser what to consider null.
*
* EMPTY_SEPARATORS - two sequential separators are null.
* EMPTY_QUOTES - two sequential quotes are null
* BOTH - both are null
* NEITHER - default. Both are considered empty string.
*/
public enum CSVReaderNullFieldIndicator {
EMPTY_SEPARATORS,
EMPTY_QUOTES,
BOTH,
NEITHER;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy