Interface Result

All Known Subinterfaces:
ExportResult, ImportResult, TransferResult

public interface Result
Defines data results when executing data import, export, transfer from the source table to the target table.
Since:
2.3.0
  • Method Summary

    Modifier and Type
    Method
    Description
    Map<Integer,com.onwbp.base.text.UserMessage>
    Returns the error messages when executing data import, export, transfer and the index of the source record as the key parameter.
    long
    Returns the number of records that are invalid.
    long
    Returns the number of records that have been processed.
    Returns the specified source table.
    Returns the specified target table.
    Iterator<com.onwbp.base.text.UserMessage>
    Returns the warning messages when executing data import, export, transfer.
  • Method Details

    • getSourceTable

      Table getSourceTable()
      Returns the specified source table.
    • getTargetTable

      Table getTargetTable()
      Returns the specified target table.
    • getNumberOfProcessedRecords

      long getNumberOfProcessedRecords()
      Returns the number of records that have been processed.
    • getNumberOfInvalidRecords

      long getNumberOfInvalidRecords()
      Returns the number of records that are invalid.
    • getErrorMessages

      Map<Integer,com.onwbp.base.text.UserMessage> getErrorMessages()
      Returns the error messages when executing data import, export, transfer and the index of the source record as the key parameter.
    • getWarningMessages

      Iterator<com.onwbp.base.text.UserMessage> getWarningMessages()
      Returns the warning messages when executing data import, export, transfer.