Clearify the meaning of isConsistent
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1610761 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
fed4161acc
commit
4144674588
|
@ -130,8 +130,12 @@ public final class CSVRecord implements Serializable, Iterable<String> {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns true if this record is consistent, false if not. Currently, the only check is matching the record size to
|
* Tells whether the record size matches the header size.
|
||||||
* the header size. Some programs can export files that fails this test but still produce parsable files.
|
*
|
||||||
|
* <p>
|
||||||
|
* Returns true if the sizes for this record match and false if not. Some programs can export files that fail this
|
||||||
|
* test but still produce parsable files.
|
||||||
|
* </p>
|
||||||
*
|
*
|
||||||
* @return true of this record is valid, false if not
|
* @return true of this record is valid, false if not
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue