Document contents of headerMap

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1522870 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2013-09-13 11:13:27 +00:00
parent 23898d62e2
commit 3740067de8
1 changed files with 2 additions and 0 deletions

View File

@ -197,6 +197,8 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable {
// the following objects are shared to reduce garbage // the following objects are shared to reduce garbage
private final CSVFormat format; private final CSVFormat format;
/** A mapping of column names to column indices */
private final Map<String, Integer> headerMap; private final Map<String, Integer> headerMap;
private final Lexer lexer; private final Lexer lexer;