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> TReturns the value corresponding to the name specified in the inputInputDefinition.getName()or outputOutputDefinition.getName().static GenericDataObjectCreates a new instance.<T> voidSets 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().Tmust be compatible with theDataTypespecified in the input or output.- Since:
- 6.1.2
-