Add contants for [CSV-51] Support Unicode line separators.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1495914 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2013-06-24 03:27:03 +00:00
parent d5cc0d8a7c
commit b460ef6200
1 changed files with 15 additions and 0 deletions

View File

@ -49,5 +49,20 @@ final class Constants {
/** According to RFC 4180, line breaks are delimited by CRLF */
static final String CRLF = "\r\n";
/**
* Unicode line separator.
*/
static final String LINE_SEPARATOR = "\u2028";
/**
* Unicode paragraph separator.
*/
static final String PARAGRAPH_SEPARATOR = "\u2029";
/**
* Unicode next line.
*/
static final String NEXT_LINE = "\u0085";
}