Replace magic char with constant DOUBLE_QUOTE.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1397077 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2012-10-11 14:29:12 +00:00
parent 4efb5ae19a
commit 13092bad7d
1 changed files with 6 additions and 4 deletions

View File

@ -29,6 +29,8 @@ import java.io.StringWriter;
*/
public class CSVFormat implements Serializable {
private static final char DOUBLE_QUOTE = '"';
private static final char COMMA = ',';
private static final long serialVersionUID = 1L;
@ -73,7 +75,7 @@ public class CSVFormat implements Serializable {
public static final CSVFormat DEFAULT =
PRISTINE.
withDelimiter(COMMA)
.withEncapsulator('"')
.withEncapsulator(DOUBLE_QUOTE)
.withEmptyLinesIgnored(true)
.withLineSeparator(CRLF);
@ -89,7 +91,7 @@ public class CSVFormat implements Serializable {
public static final CSVFormat RFC4180 =
PRISTINE.
withDelimiter(COMMA)
.withEncapsulator('"')
.withEncapsulator(DOUBLE_QUOTE)
.withLineSeparator(CRLF);
/**
@ -105,14 +107,14 @@ public class CSVFormat implements Serializable {
public static final CSVFormat EXCEL =
PRISTINE
.withDelimiter(COMMA)
.withEncapsulator('"')
.withEncapsulator(DOUBLE_QUOTE)
.withLineSeparator(CRLF);
/** Tab-delimited format, with quote; leading and trailing spaces ignored. */
public static final CSVFormat TDF =
PRISTINE
.withDelimiter('\t')
.withEncapsulator('"')
.withEncapsulator(DOUBLE_QUOTE)
.withSurroundingSpacesIgnored(true)
.withEmptyLinesIgnored(true)
.withLineSeparator(CRLF);