Add output of the nullString to toString implementation

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1522879 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2013-09-13 11:39:52 +00:00
parent 467a504a2d
commit 65ce9e99ea
1 changed files with 4 additions and 0 deletions

View File

@ -585,6 +585,10 @@ public class CSVFormat implements Serializable {
sb.append(' ');
sb.append("CommentStart=<").append(commentStart).append('>');
}
if (isNullHandling()) {
sb.append(' ');
sb.append("NullString=<").append(nullString).append('>');
}
if (getIgnoreEmptyLines()) {
sb.append(" EmptyLines:ignored");
}