git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1397574 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2012-10-12 14:15:25 +00:00
parent 8159aea6d1
commit 9428b9cc1a
1 changed files with 5 additions and 0 deletions

View File

@ -24,7 +24,12 @@ class Constants {
static final char BELL = '\b';
static final char COMMA = ',';
/**
* Starts a comment, the remainder of the line is the comment.
*/
static final char COMMENT = '#';
static final char CR = '\r';
static final char DOUBLE_QUOTE = '"';
static final char ESCAPE = '\\';