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:
parent
df4bd36e7b
commit
d045a45f57
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue