Java org.apache.commons.csv CSVRecord fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.csv CSVRecord fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.csv CSVRecord.

The text is from its open source code.

Field

String[]values
The values of the record

Method

Stringget(final Enum e)
Returns a value by Enum .
Stringget(final int i)
Returns a value by index.
Stringget(final String name)
Returns a value by name.
StringgetComment()
Returns the comment for this record, if any.
longgetRecordNumber()
Returns the number of this record in the parsed CSV file.
booleanisConsistent()
Tells whether the record size matches the header size.
booleanisMapped(final String name)
Checks whether a given column is mapped, i.e.
booleanisSet(final String name)
Checks whether a given columns is mapped and has a value.
Iteratoriterator()
Returns an iterator over the values of this record.
intsize()
Returns the number of values in this record.
MaptoMap()
Copies this record into a new Map.
StringtoString()
Returns a string representation of the contents of this record.