git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1635505 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2014-10-30 14:08:05 +00:00
parent a2b9dfbd4e
commit 0c4424bb20
1 changed files with 5 additions and 0 deletions

View File

@ -413,6 +413,11 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable {
return hdrMap;
}
/**
* Gets whether this parser is closed.
*
* @return whether this parser is closed.
*/
public boolean isClosed() {
return this.lexer.isClosed();
}