Interface IExtractionOption

All Superinterfaces:
ITaskOption
All Known Subinterfaces:
IDataExtractionOption
All Known Implementing Classes:
DataExtractionOption

public interface IExtractionOption extends ITaskOption
  • Field Details

  • Method Details

    • setOutputFormat

      void setOutputFormat(String format)
      Set output format.
      Parameters:
      format - output format.
    • getOutputFormat

      String getOutputFormat()
      Get output format.
    • setOutputStream

      void setOutputStream(OutputStream out)
      Set output stream.
      Parameters:
      out - output stream.
    • getOutputStream

      OutputStream getOutputStream()
      Get output stream.
    • setOutputFile

      void setOutputFile(String filename)
      Set output file.
      Parameters:
      filename - name of the output file.
    • getOutputFile

      String getOutputFile()
      Get output file name.
    • setFormatter

      void setFormatter(Map formatters)
      Set the formatters used to output the value. The format option is a hash map, the key can be the column name or column index (start from 1), the value should be a format pattern. If no format is defined, the value should be outputted as current implementation.
      Parameters:
      formatters -
    • getFormatter

      Map getFormatter()
      Get the format option.
      Returns: