Add some interesting ASCII codes to Constants class.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1582481 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2014-03-27 21:22:59 +00:00
parent e454d6847e
commit 0fbefc96be
1 changed files with 7 additions and 0 deletions

View File

@ -39,6 +39,13 @@ final class Constants {
static final char LF = '\n';
static final char SP = ' ';
static final char TAB = '\t';
/** ASCII record separator */
static final char RS = 30;
/** ASCII unit separator */
static final char US = 31;
static final String EMPTY = "";
/** The end of stream symbol */