ServiceType.@Deprecated public class ImportType extends Object
| Modifier and Type | Field and Description |
|---|---|
static ImportType |
CSV
Deprecated.
Specifies the import type used for importing data from a CSV file into a table.
|
static ImportType |
EXCEL_FOR_MULTIPLE_TABLES
Deprecated.
Specifies the import type used for importing data from an Excel file into multiples tables.
|
static ImportType |
EXCEL_FOR_SINGLE_TABLE
Deprecated.
Specifies the import type used for importing data from an Excel file into a table.
|
static ImportType |
UNKNOWN
Deprecated.
Specifies an unidentified type.
|
static ImportType |
XML_FOR_MULTIPLE_TABLES
Deprecated.
Specifies the import type used for importing data from XML files into multiples tables.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getValue()
Deprecated.
Returns the
String value of the import type. |
boolean |
isCSV()
Deprecated.
Returns
true if the import type is CSV. |
boolean |
isExcelForMultipleTables()
Deprecated.
Returns
true if the import type is EXCEL_FOR_MULTIPLE_TABLES. |
boolean |
isExcelForSingleTable()
Deprecated.
Returns
true if the import type is EXCEL_FOR_SINGLE_TABLE. |
boolean |
isXMLForMultipleTables()
Deprecated.
Returns
true if the import type is XML_FOR_MULTIPLE_TABLES. |
static ImportType |
parse(String value)
Deprecated.
Returns the Adix import type instance corresponding to the value specified.
|
public static final ImportType CSV
public static final ImportType EXCEL_FOR_SINGLE_TABLE
public static final ImportType EXCEL_FOR_MULTIPLE_TABLES
public static final ImportType XML_FOR_MULTIPLE_TABLES
public static final ImportType UNKNOWN
public static ImportType parse(String value)
public boolean isCSV()
true if the import type is CSV.public boolean isExcelForSingleTable()
true if the import type is EXCEL_FOR_SINGLE_TABLE.public boolean isExcelForMultipleTables()
true if the import type is EXCEL_FOR_MULTIPLE_TABLES.public boolean isXMLForMultipleTables()
true if the import type is XML_FOR_MULTIPLE_TABLES.public String getValue()
String value of the import type.