Package com.orchestranetworks.addon.adix
Class ImportType
- java.lang.Object
-
- com.orchestranetworks.addon.adix.ImportType
-
@Deprecated public class ImportType extends java.lang.ObjectDeprecated.Since 2.3.0, replaced byServiceType.This enumeration class defines the possible import types.
-
-
Field Summary
Fields Modifier and Type Field Description static ImportTypeCSVDeprecated.Specifies the import type used for importing data from a CSV file into a table.static ImportTypeEXCEL_FOR_MULTIPLE_TABLESDeprecated.Specifies the import type used for importing data from an Excel file into multiples tables.static ImportTypeEXCEL_FOR_SINGLE_TABLEDeprecated.Specifies the import type used for importing data from an Excel file into a table.static ImportTypeUNKNOWNDeprecated.Specifies an unidentified type.static ImportTypeXML_FOR_MULTIPLE_TABLESDeprecated.Specifies the import type used for importing data from XML files into multiples tables.
-
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 import type.booleanisCSV()Deprecated.Returnstrueif the import type isCSV.booleanisExcelForMultipleTables()Deprecated.Returnstrueif the import type isEXCEL_FOR_MULTIPLE_TABLES.booleanisExcelForSingleTable()Deprecated.Returnstrueif the import type isEXCEL_FOR_SINGLE_TABLE.booleanisXMLForMultipleTables()Deprecated.Returnstrueif the import type isXML_FOR_MULTIPLE_TABLES.static ImportTypeparse(java.lang.String value)Deprecated.Returns the Adix import type instance corresponding to the value specified.
-
-
-
Field Detail
-
CSV
public static final ImportType CSV
Deprecated.Specifies the import type used for importing data from a CSV file into a table.
-
EXCEL_FOR_SINGLE_TABLE
public static final ImportType EXCEL_FOR_SINGLE_TABLE
Deprecated.Specifies the import type used for importing data from an Excel file into a table.
-
EXCEL_FOR_MULTIPLE_TABLES
public static final ImportType EXCEL_FOR_MULTIPLE_TABLES
Deprecated.Specifies the import type used for importing data from an Excel file into multiples tables.
-
XML_FOR_MULTIPLE_TABLES
public static final ImportType XML_FOR_MULTIPLE_TABLES
Deprecated.Specifies the import type used for importing data from XML files into multiples tables.
-
UNKNOWN
public static final ImportType UNKNOWN
Deprecated.Specifies an unidentified type.
-
-
Method Detail
-
parse
public static ImportType parse(java.lang.String value)
Deprecated.Returns the Adix import type instance corresponding to the value specified.
-
isCSV
public boolean isCSV()
Deprecated.Returnstrueif the import type isCSV.
-
isExcelForSingleTable
public boolean isExcelForSingleTable()
Deprecated.Returnstrueif the import type isEXCEL_FOR_SINGLE_TABLE.
-
isExcelForMultipleTables
public boolean isExcelForMultipleTables()
Deprecated.Returnstrueif the import type isEXCEL_FOR_MULTIPLE_TABLES.
-
isXMLForMultipleTables
public boolean isXMLForMultipleTables()
Deprecated.Returnstrueif the import type isXML_FOR_MULTIPLE_TABLES.
-
getValue
public java.lang.String getValue()
Deprecated.Returns theStringvalue of the import type.
-
-