Interface GenericDataObject
public interface GenericDataObject
Represents the value structure of a generic input or output of a
transformation. Refer to the constructor of
InputDefinition(String, UserMessage, UserMessage, List)
,
OutputDefinition(String, UserMessage, UserMessage, List)
- Since:
- 6.1.2
-
Method Summary
Modifier and TypeMethodDescription<T> T
Returns the value corresponding to the name specified in the inputInputDefinition.getName()
or outputOutputDefinition.getName()
.static GenericDataObject
Creates a new instance.<T> void
Sets the value corresponding to the name specified in the inputInputDefinition.getName()
or outputOutputDefinition.getName()
.
-
Method Details
-
newInstance
Creates a new instance.- Since:
- 6.1.2
-
getValue
Returns the value corresponding to the name specified in the inputInputDefinition.getName()
or outputOutputDefinition.getName()
.- Since:
- 6.1.2
-
setValue
Sets the value corresponding to the name specified in the inputInputDefinition.getName()
or outputOutputDefinition.getName()
.T
must be compatible with theDataType
specified in the input or output.- Since:
- 6.1.2
-