Class RecordWrapper<T>
java.lang.Object
de.siegmar.fastcsv.reader.RecordWrapper<T>
- Type Parameters:
T- the record type
-
Method Summary
Modifier and TypeMethodDescriptionintReturns the number of fields in the record..Returns the actual record to be returned by theCsvReader, nevernull..booleanReturns whether the record denotes a comment..booleanReturns whether the record is empty..
-
Method Details
-
isComment
public boolean isComment()Returns whether the record denotes a comment..
This method is only used if the
CsvReaderis configured to skip comments.- Returns:
- whether the record denotes a comment.
-
isEmptyLine
public boolean isEmptyLine()Returns whether the record is empty..
This method is only used if the
CsvReaderis configured to skip empty lines.- Returns:
- whether the record is empty.
-
getFieldCount
public int getFieldCount()Returns the number of fields in the record..
This method is only used if the
CsvReaderis configured to check the number of fields in each record.- Returns:
- the number of fields in the record.
-
getWrappedRecord
-