Class DataExchangeExportType
- java.lang.Object
-
- com.orchestranetworks.addon.dataexchange.DataExchangeExportType
-
public final class DataExchangeExportType extends java.lang.ObjectDeprecated.Since 2.3.0, replaced byServiceType.Defines all {addon.label} export types.- Since:
- 2.0.0
-
-
Field Summary
Fields Modifier and Type Field Description static DataExchangeExportTypeEXPORT_DEFAULT_SQLDeprecated.An export type corresponding to the default SQL format option.static DataExchangeExportTypeEXPORT_DEFAULT_XMLDeprecated.An export type corresponding to the default XML format option.static DataExchangeExportTypeEXPORT_XMLDeprecated.An export type corresponding to a user-defined XML format option.static DataExchangeExportTypeUNKNOWNDeprecated.An export type corresponding to an unknown execution.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.lang.StringgetValue()Deprecated.Returns the string value ofthis.booleanisDefaultSQLExport()Deprecated.Returnstrueif the export type isEXPORT_DEFAULT_SQL.booleanisExportDefaultXML()Deprecated.Returnstrueif the export type isEXPORT_DEFAULT_XML.booleanisExportXML()Deprecated.Returnstrueif the export type isEXPORT_XML.booleanisUnknown()Deprecated.Returnstrueif the type isUNKNOWN.static DataExchangeExportTypeparse(java.lang.String value)Deprecated.Returns an export type by given stringvalue.
-
-
-
Field Detail
-
EXPORT_DEFAULT_XML
public static final DataExchangeExportType EXPORT_DEFAULT_XML
Deprecated.An export type corresponding to the default XML format option.
-
EXPORT_XML
public static final DataExchangeExportType EXPORT_XML
Deprecated.An export type corresponding to a user-defined XML format option.
-
EXPORT_DEFAULT_SQL
public static final DataExchangeExportType EXPORT_DEFAULT_SQL
Deprecated.An export type corresponding to the default SQL format option.- Since:
- 2.2.0
-
UNKNOWN
public static final DataExchangeExportType UNKNOWN
Deprecated.An export type corresponding to an unknown execution.
-
-
Method Detail
-
parse
public static DataExchangeExportType parse(java.lang.String value)
Deprecated.Returns an export type by given stringvalue.
-
isExportDefaultXML
public boolean isExportDefaultXML()
Deprecated.Returnstrueif the export type isEXPORT_DEFAULT_XML.
-
isExportXML
public boolean isExportXML()
Deprecated.Returnstrueif the export type isEXPORT_XML.
-
isDefaultSQLExport
public boolean isDefaultSQLExport()
Deprecated.Returnstrueif the export type isEXPORT_DEFAULT_SQL.- Since:
- 2.2.0
-
isUnknown
public boolean isUnknown()
Deprecated.Returnstrueif the type isUNKNOWN.- Since:
- 2.2.0
-
getValue
public java.lang.String getValue()
Deprecated.Returns the string value ofthis.
-
-