Skip to content
This repository was archived by the owner on Jan 8, 2020. It is now read-only.

Commit 0fbefc9

Browse files
committed
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
1 parent e454d68 commit 0fbefc9

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

src/main/java/org/apache/commons/csv/Constants.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,13 @@ final class Constants {
3939
static final char LF = '\n';
4040
static final char SP = ' ';
4141
static final char TAB = '\t';
42+
43+
/** ASCII record separator */
44+
static final char RS = 30;
45+
46+
/** ASCII unit separator */
47+
static final char US = 31;
48+
4249
static final String EMPTY = "";
4350

4451
/** The end of stream symbol */

0 commit comments

Comments
 (0)