Skip to content

Commit 4428b57

Browse files
committed
Document format of CSVPrinter.toString
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1610766 13f79535-47bb-0310-9956-ffa450edef68
1 parent 4144674 commit 4428b57

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/main/java/org/apache/commons/csv/CSVRecord.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,12 @@ public Map<String, String> toMap() {
221221
return putIn(new HashMap<String, String>(values.length));
222222
}
223223

224+
/**
225+
* Returns a string representation of the contents of this record. The result is constructed by passing the internal
226+
* values array to {@link Arrays#toString(Object[])}.
227+
*
228+
* @return a String representation of this record.
229+
*/
224230
@Override
225231
public String toString() {
226232
return Arrays.toString(values);

0 commit comments

Comments
 (0)