Class FunctionValue
- java.lang.Object
-
- com.orchestranetworks.addon.dpra.function.execution.result.FunctionValue
-
public abstract class FunctionValue extends java.lang.ObjectContains the value of anOutputDefinitionwhen a function is executed.Values inside a
FunctionResultare organized as one or manyValueSequences.- Since:
- 4.2.0
- See Also:
FunctionResult,ValueSequence.getValues()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract java.lang.Stringformat()Formats the value to string.com.orchestranetworks.schema.SchemaTypeNamegetDataType()Returns the data type of this value.java.lang.StringgetOutputName()Returns the output name.
-
-
-
Method Detail
-
getOutputName
public final java.lang.String getOutputName()
Returns the output name.- See Also:
OutputDefinition.getName()
-
getDataType
public final com.orchestranetworks.schema.SchemaTypeName getDataType()
Returns the data type of this value.- See Also:
OutputDefinition.getDataType()
-
format
public abstract java.lang.String format()
Formats the value to string.
-
-