Class DataExchangeTransferOption
- java.lang.Object
-
- com.orchestranetworks.addon.dataexchange.DataExchangeTransferOption
-
public final class DataExchangeTransferOption extends java.lang.ObjectDeprecated.No replacement. The system will check the compatibility automatically.This class defines all options that are used for the transfer data service.- Since:
- 2.0.0
-
-
Field Summary
Fields Modifier and Type Field Description static DataExchangeTransferOptionIN_OTHER_DATA_MODELDeprecated.An option defines that data will be transferred between datasets that do not share the same data model.static DataExchangeTransferOptionIN_SAME_DATA_MODELDeprecated.An option defines that data will be transferred between datasets that share the same data model.static DataExchangeTransferOptionUNKNOWNDeprecated.An option 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 stringvalueofthis.booleanisInOtherDataModel()Deprecated.Returnstrueif the transfer option isIN_OTHER_DATA_MODEL.booleanisInSameDataModel()Deprecated.Returnstrueif the transfer option isIN_SAME_DATA_MODEL.booleanisUnknown()Deprecated.Returnstrueif transfer option isUNKNOWN.static DataExchangeTransferOptionparse(java.lang.String value)Deprecated.Returns a transfer mode by the given stringvalue.
-
-
-
Field Detail
-
IN_SAME_DATA_MODEL
public static final DataExchangeTransferOption IN_SAME_DATA_MODEL
Deprecated.An option defines that data will be transferred between datasets that share the same data model.
-
IN_OTHER_DATA_MODEL
public static final DataExchangeTransferOption IN_OTHER_DATA_MODEL
Deprecated.An option defines that data will be transferred between datasets that do not share the same data model.
-
UNKNOWN
public static final DataExchangeTransferOption UNKNOWN
Deprecated.An option corresponding to an unknown execution.
-
-
Method Detail
-
parse
public static DataExchangeTransferOption parse(java.lang.String value)
Deprecated.Returns a transfer mode by the given stringvalue.
-
isInSameDataModel
public boolean isInSameDataModel()
Deprecated.Returnstrueif the transfer option isIN_SAME_DATA_MODEL.
-
isInOtherDataModel
public boolean isInOtherDataModel()
Deprecated.Returnstrueif the transfer option isIN_OTHER_DATA_MODEL.
-
isUnknown
public boolean isUnknown()
Deprecated.Returnstrueif transfer option isUNKNOWN.
-
getValue
public java.lang.String getValue()
Deprecated.Returns stringvalueofthis.
-
-