1 package com.opencsv.enums;
2
3 /**
4 * Enumeration used to tell the CSVParser what to consider null.
5 * <ul>
6 * <li>EMPTY_SEPARATORS - two sequential separators are null.</li>
7 * <li>EMPTY_QUOTES - two sequential quotes are null</li>
8 * <li>BOTH - both are null</li>
9 * <li>NEITHER - default. Both are considered empty string.</li>
10 * </ul>
11 */
12 public enum CSVReaderNullFieldIndicator {
13 EMPTY_SEPARATORS,
14 EMPTY_QUOTES,
15 BOTH,
16 NEITHER
17 }