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:
parent
e454d6847e
commit
0fbefc96be
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue