Document that we can only handle CR, LF and CRLF as record separator

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1609498 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2014-07-10 16:42:38 +00:00
parent 0e8811ddb7
commit b7cd1ae225
1 changed files with 4 additions and 0 deletions

View File

@ -921,6 +921,8 @@ public final class CSVFormat implements Serializable {
/**
* Sets the record separator of the format to the specified character.
*
* <p><strong>Note:</strong> Currently only CR and LF are supported.</p>
*
* @param recordSeparator
* the record separator to use for output.
*
@ -933,6 +935,8 @@ public final class CSVFormat implements Serializable {
/**
* Sets the record separator of the format to the specified String.
*
* <p><strong>Note:</strong> Currently only CR, LF and CRLF are supported.</p>
*
* @param recordSeparator
* the record separator to use for output.
*