Package org.nuxeo.ecm.csv.core
Class CSVImportResult
- java.lang.Object
-
- org.nuxeo.ecm.csv.core.CSVImportResult
-
- All Implemented Interfaces:
Serializable
public class CSVImportResult extends Object implements Serializable
- Since:
- 5.7
- Author:
- Thomas Roger
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected long
errorLineCount
protected long
skippedLineCount
protected long
successLineCount
protected long
totalLineCount
-
Constructor Summary
Constructors Constructor Description CSVImportResult(long totalLineCount, long successLineCount, long skippedLineCount, long errorLineCount)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CSVImportResult
fromImportLogs(List<CSVImportLog> importLogs)
long
getErrorLineCount()
long
getSkippedLineCount()
long
getSuccessLineCount()
long
getTotalLineCount()
-
-
-
Method Detail
-
fromImportLogs
public static final CSVImportResult fromImportLogs(List<CSVImportLog> importLogs)
-
getTotalLineCount
public long getTotalLineCount()
-
getSuccessLineCount
public long getSuccessLineCount()
-
getSkippedLineCount
public long getSkippedLineCount()
-
getErrorLineCount
public long getErrorLineCount()
-
-