Clarify (hopefully) the Javadoc

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1496064 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2013-06-24 14:22:56 +00:00
parent df4bd36e7b
commit d045a45f57
1 changed files with 2 additions and 2 deletions

View File

@ -104,11 +104,11 @@ public class CSVRecord implements Serializable, Iterable<String> {
}
/**
* Checks whether a given column is mapped.
* Checks whether a given column is mapped, i.e. its name has been defined to the parser.
*
* @param name
* the name of the column to be retrieved.
* @return whether a given columns is mapped.
* @return whether a given column is mapped.
*/
public boolean isMapped(final String name) {
return mapping != null ? mapping.containsKey(name) : false;