Class ExportType


  • public class ExportType
    extends java.lang.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 ExportType CSV
      Deprecated.
      Specifies the export type used to export data from a table to a CSV file.
      static ExportType EXCEL_FOR_MULTIPLE_TABLES
      Deprecated.
      Specifies the export type used for exporting data from multiple tables to an Excel file.
      static ExportType EXCEL_FOR_SINGLE_TABLE
      Deprecated.
      Specifies the export type used for exporting data from a table to an Excel file.
      static ExportType UNKNOWN
      Deprecated.
      Specifies an unidentified type.
      static 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.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      java.lang.String getValue()
      Deprecated.
      Returns the String value of the export type.
      boolean isCSV()
      Deprecated.
      Returns true if the export type is CSV.
      boolean isExcelForMultipleTables()
      Deprecated.
      Returns true if the export type is EXCEL_FOR_MULTIPLE_TABLES.
      boolean isExcelForSingleTable()
      Deprecated.
      Returns true if the export type is EXCEL_FOR_SINGLE_TABLE.
      boolean isXMLForMultipleTables()
      Deprecated.
      Returns true if the export type is XML_FOR_MULTIPLE_TABLES.
      static ExportType parse​(java.lang.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 Detail

      • 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 Detail

      • parse

        public static ExportType parse​(java.lang.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 java.lang.String getValue()
        Deprecated.
        Returns the String value of the export type.