public final class ApplicationType extends Object
| Modifier and Type | Field and Description |
|---|---|
static ApplicationType |
CSV
Specifies the application type used to import/ export data from/to a CSV file.
|
static ApplicationType |
DEFAULT_SQL
Specifies that the application type relies on default SQL paths created by EBX® Data Exchange Add-on when an SQL import or export process executes.
|
static ApplicationType |
DEFAULT_XML
Specifies that the application type relies on default XML paths created by EBX® Data Exchange Add-on when an XML import or export process executes.
|
static ApplicationType |
EBX
Specifies the application type used to transfer data between two datasets in EBX®.
|
static ApplicationType |
EXCEL
Specifies the application type used to import/ export data from/to an Excel file.
|
static ApplicationType |
UNKNOWN
Specifies an unidentified type.
|
static ApplicationType |
XML
Specifies the application type used to import/ export data from/to an XML file.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj) |
String |
getValue()
Returns the
String value of the application type. |
int |
hashCode() |
boolean |
isCSV()
Returns
true if the application type is CSV. |
boolean |
isDefaultSQL()
Returns
true if the application type is Default SQL. |
boolean |
isDefaultXML()
Returns
true if the application type is Default XML. |
boolean |
isEBX()
Returns
true if the application type is EBX. |
boolean |
isExcel()
Returns
true if the application type is Excel. |
boolean |
isUnknown()
Returns
true if the application type is not EBX, XML, Default XML, CSV or Excel. |
boolean |
isXML()
Returns
true if the application type is XML. |
static ApplicationType |
parse(String value)
Returns the application type instance corresponding to the value specified.
|
public static final ApplicationType EBX
public static final ApplicationType XML
public static final ApplicationType CSV
public static final ApplicationType EXCEL
public static final ApplicationType DEFAULT_XML
public static final ApplicationType DEFAULT_SQL
public static final ApplicationType UNKNOWN
public static ApplicationType parse(String value)
public boolean isEBX()
true if the application type is EBX.public boolean isXML()
true if the application type is XML.public boolean isDefaultXML()
true if the application type is Default XML.public boolean isCSV()
true if the application type is CSV.public boolean isExcel()
true if the application type is Excel.public boolean isDefaultSQL()
true if the application type is Default SQL.public boolean isUnknown()
true if the application type is not EBX, XML, Default XML, CSV or Excel.public String getValue()
String value of the application type.