Document format of CSVPrinter.toString

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1610766 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2014-07-15 17:30:18 +00:00
parent 4144674588
commit 4428b575e8
1 changed files with 6 additions and 0 deletions

View File

@ -221,6 +221,12 @@ public final class CSVRecord implements Serializable, Iterable<String> {
return putIn(new HashMap<String, String>(values.length));
}
/**
* Returns a string representation of the contents of this record. The result is constructed by passing the internal
* values array to {@link Arrays#toString(Object[])}.
*
* @return a String representation of this record.
*/
@Override
public String toString() {
return Arrays.toString(values);