Doc
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1727809 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
72f78cc9d9
commit
409feb2888
|
@ -125,6 +125,9 @@ public final class CSVRecord implements Serializable, Iterable<String> {
|
|||
|
||||
/**
|
||||
* Returns the comment for this record, if any.
|
||||
* Note that comments are attached to the following record.
|
||||
* If there is no following record (i.e. the comment is at EOF)
|
||||
* the comment will be ignored.
|
||||
*
|
||||
* @return the comment for this record, or null if no comment for this record is available.
|
||||
*/
|
||||
|
@ -163,6 +166,9 @@ public final class CSVRecord implements Serializable, Iterable<String> {
|
|||
|
||||
/**
|
||||
* Checks whether this record has a comment, false otherwise.
|
||||
* Note that comments are attached to the following record.
|
||||
* If there is no following record (i.e. the comment is at EOF)
|
||||
* the comment will be ignored.
|
||||
*
|
||||
* @return true if this record has a comment, false otherwise
|
||||
* @since 1.3
|
||||
|
|
Loading…
Reference in New Issue