Interface IExportRecord
-
- All Known Implementing Classes:
ExportRecord
public interface IExportRecordRepresents a single record to be exported.- Author:
- Philip Helger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.helger.commons.collection.impl.ICommonsList<? extends IExportRecordField>getAllFields()intgetFieldCount()booleanhasFields()
-
-
-
Method Detail
-
getAllFields
@Nonnull com.helger.commons.collection.impl.ICommonsList<? extends IExportRecordField> getAllFields()
- Returns:
- A list of all fields in the correct order.
-
hasFields
boolean hasFields()
- Returns:
trueif at least one field is present
-
getFieldCount
@Nonnegative int getFieldCount()
- Returns:
- The number of fields in this record.
-
-