Class ExportType

java.lang.Object
com.orchestranetworks.addon.adix.ExportType

public class ExportType extends Object
Deprecated.
Since 2.3.0, replaced by ServiceType.
This enumeration class defines the possible export types.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final ExportType
    Deprecated.
    Specifies the export type used to export data from a table to a CSV file.
    static final ExportType
    Deprecated.
    Specifies the export type used for exporting data from multiple tables to an Excel file.
    static final ExportType
    Deprecated.
    Specifies the export type used for exporting data from a table to an Excel file.
    static final ExportType
    Deprecated.
    Specifies an unidentified type.
    static final ExportType
    Deprecated.
    Specifies the export type used for exporting data from multiple tables to XML files that are then compressed into a ZIP file.
  • Method Summary

    Modifier and Type
    Method
    Description
    Deprecated.
    Returns the String value of the export type.
    boolean
    Deprecated.
    Returns true if the export type is CSV.
    boolean
    Deprecated.
    Returns true if the export type is EXCEL_FOR_MULTIPLE_TABLES.
    boolean
    Deprecated.
    Returns true if the export type is EXCEL_FOR_SINGLE_TABLE.
    boolean
    Deprecated.
    Returns true if the export type is XML_FOR_MULTIPLE_TABLES.
    static ExportType
    parse(String value)
    Deprecated.
    Returns the Adix export type instance corresponding to the value specified.

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • CSV

      public static final ExportType CSV
      Deprecated.
      Specifies the export type used to export data from a table to a CSV file.
    • EXCEL_FOR_SINGLE_TABLE

      public static final ExportType EXCEL_FOR_SINGLE_TABLE
      Deprecated.
      Specifies the export type used for exporting data from a table to an Excel file.
    • EXCEL_FOR_MULTIPLE_TABLES

      public static final ExportType EXCEL_FOR_MULTIPLE_TABLES
      Deprecated.
      Specifies the export type used for exporting data from multiple tables to an Excel file.
    • XML_FOR_MULTIPLE_TABLES

      public static final ExportType XML_FOR_MULTIPLE_TABLES
      Deprecated.
      Specifies the export type used for exporting data from multiple tables to XML files that are then compressed into a ZIP file.
    • UNKNOWN

      public static final ExportType UNKNOWN
      Deprecated.
      Specifies an unidentified type.
  • Method Details

    • parse

      public static ExportType parse(String value)
      Deprecated.
      Returns the Adix export type instance corresponding to the value specified.
    • isCSV

      public boolean isCSV()
      Deprecated.
      Returns true if the export type is CSV.
    • isExcelForSingleTable

      public boolean isExcelForSingleTable()
      Deprecated.
      Returns true if the export type is EXCEL_FOR_SINGLE_TABLE.
    • isExcelForMultipleTables

      public boolean isExcelForMultipleTables()
      Deprecated.
      Returns true if the export type is EXCEL_FOR_MULTIPLE_TABLES.
    • isXMLForMultipleTables

      public boolean isXMLForMultipleTables()
      Deprecated.
      Returns true if the export type is XML_FOR_MULTIPLE_TABLES.
    • getValue

      public String getValue()
      Deprecated.
      Returns the String value of the export type.