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

com.opencsv.CSVReaderNullFieldIndicator Maven / Gradle / Ivy

There is a newer version: 0.13.3
Show newest version
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