Package com.helger.commons.csv
Class CCSV
- java.lang.Object
-
- com.helger.commons.csv.CCSV
-
@Immutable public final class CCSV extends Object
Constants for the CSV handling.- Author:
- Philip Helger
-
-
Field Summary
Fields Modifier and Type Field Description static charDEFAULT_ESCAPE_CHARACTERThe default escape character to use if none is supplied to the constructor.static booleanDEFAULT_IGNORE_LEADING_WHITESPACEThe default leading whitespace behavior to use if none is supplied to the constructor.static booleanDEFAULT_IGNORE_QUOTATIONSIf the quote character is set to null then there is no quote character.static booleanDEFAULT_KEEP_CRstatic charDEFAULT_QUOTE_CHARACTERThe default quote character to use if none is supplied to the constructor.static charDEFAULT_SEPARATORThe default separator to use if none is supplied to the constructor.static intDEFAULT_SKIP_LINESThe default line to start reading.static booleanDEFAULT_STRICT_QUOTESThe default strict quote behavior to use if none is supplied to the constructor.static booleanDEFAULT_VERIFY_READERstatic intINITIAL_STRING_SIZEThe average size of a line read by openCSV (used for setting the size of StringBuilders).static charNULL_CHARACTERThis is the "null" character - if a value is set to this then it is ignored.
-
-
-
Field Detail
-
DEFAULT_SEPARATOR
public static final char DEFAULT_SEPARATOR
The default separator to use if none is supplied to the constructor.- See Also:
- Constant Field Values
-
DEFAULT_QUOTE_CHARACTER
public static final char DEFAULT_QUOTE_CHARACTER
The default quote character to use if none is supplied to the constructor.- See Also:
- Constant Field Values
-
DEFAULT_ESCAPE_CHARACTER
public static final char DEFAULT_ESCAPE_CHARACTER
The default escape character to use if none is supplied to the constructor.- See Also:
- Constant Field Values
-
DEFAULT_STRICT_QUOTES
public static final boolean DEFAULT_STRICT_QUOTES
The default strict quote behavior to use if none is supplied to the constructor.- See Also:
- Constant Field Values
-
DEFAULT_IGNORE_LEADING_WHITESPACE
public static final boolean DEFAULT_IGNORE_LEADING_WHITESPACE
The default leading whitespace behavior to use if none is supplied to the constructor.- See Also:
- Constant Field Values
-
DEFAULT_IGNORE_QUOTATIONS
public static final boolean DEFAULT_IGNORE_QUOTATIONS
If the quote character is set to null then there is no quote character.- See Also:
- Constant Field Values
-
INITIAL_STRING_SIZE
public static final int INITIAL_STRING_SIZE
The average size of a line read by openCSV (used for setting the size of StringBuilders).- See Also:
- Constant Field Values
-
NULL_CHARACTER
public static final char NULL_CHARACTER
This is the "null" character - if a value is set to this then it is ignored.- See Also:
- Constant Field Values
-
DEFAULT_KEEP_CR
public static final boolean DEFAULT_KEEP_CR
- See Also:
- Constant Field Values
-
DEFAULT_VERIFY_READER
public static final boolean DEFAULT_VERIFY_READER
- See Also:
- Constant Field Values
-
DEFAULT_SKIP_LINES
public static final int DEFAULT_SKIP_LINES
The default line to start reading.- See Also:
- Constant Field Values
-
-