Author: britter
Date: Tue Jul 15 17:30:18 2014
New Revision: 1610766
URL: http://svn.apache.org/r1610766
Log:
Document format of CSVPrinter.toString
Modified:
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVRecord.java
Modified:
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVRecord.java
URL:
http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVRecord.java?rev=1610766&r1=1610765&r2=1610766&view=diff
==============================================================================
---
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVRecord.java
(original)
+++
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVRecord.java
Tue Jul 15 17:30:18 2014
@@ -221,6 +221,12 @@ public final class CSVRecord implements
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);