Package com.orchestranetworks.addon.adix
Class ExportType
- java.lang.Object
-
- com.orchestranetworks.addon.adix.ExportType
-
public class ExportType extends java.lang.ObjectDeprecated.Since 2.3.0, replaced byServiceType.This enumeration class defines the possible export types.
-
-
Field Summary
Fields Modifier and Type Field Description static ExportTypeCSVDeprecated.Specifies the export type used to export data from a table to a CSV file.static ExportTypeEXCEL_FOR_MULTIPLE_TABLESDeprecated.Specifies the export type used for exporting data from multiple tables to an Excel file.static ExportTypeEXCEL_FOR_SINGLE_TABLEDeprecated.Specifies the export type used for exporting data from a table to an Excel file.static ExportTypeUNKNOWNDeprecated.Specifies an unidentified type.static ExportTypeXML_FOR_MULTIPLE_TABLESDeprecated.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.StringgetValue()Deprecated.Returns theStringvalue of the export type.booleanisCSV()Deprecated.Returnstrueif the export type isCSV.booleanisExcelForMultipleTables()Deprecated.Returnstrueif the export type isEXCEL_FOR_MULTIPLE_TABLES.booleanisExcelForSingleTable()Deprecated.Returnstrueif the export type isEXCEL_FOR_SINGLE_TABLE.booleanisXMLForMultipleTables()Deprecated.Returnstrueif the export type isXML_FOR_MULTIPLE_TABLES.static ExportTypeparse(java.lang.String value)Deprecated.Returns the Adix export type instance corresponding to the value specified.
-
-
-
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.Returnstrueif the export type isCSV.
-
isExcelForSingleTable
public boolean isExcelForSingleTable()
Deprecated.Returnstrueif the export type isEXCEL_FOR_SINGLE_TABLE.
-
isExcelForMultipleTables
public boolean isExcelForMultipleTables()
Deprecated.Returnstrueif the export type isEXCEL_FOR_MULTIPLE_TABLES.
-
isXMLForMultipleTables
public boolean isXMLForMultipleTables()
Deprecated.Returnstrueif the export type isXML_FOR_MULTIPLE_TABLES.
-
getValue
public java.lang.String getValue()
Deprecated.Returns theStringvalue of the export type.
-
-