Interface DmnEvaluatedOutput
-
- All Known Implementing Classes:
DmnEvaluatedOutputImpl
public interface DmnEvaluatedOutput
The output for a evaluated decision.In a decision table implementation an output can have a human readable name and a name which can be used to reference the output value in the decision result.
The human readable name is the
label
attribute of the DMN XMLoutput
element. You can access this name by thegetName()
getter.The output name to reference the output value in the decision result is the
name
attribute of the DMN XMLoutput
element. You can access this output name by thegetOutputName()
getter.The
id
andvalue
of the evaluated decision table output entry can be access by thegetId()
andgetValue()
getter.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getId()
String
getName()
String
getOutputName()
TypedValue
getValue()
-
-
-
Method Detail
-
getId
String getId()
- Returns:
- the id of the evaluated output or null if not set
-
getName
String getName()
- Returns:
- the name of the evaluated output or null if not set
-
getOutputName
String getOutputName()
- Returns:
- the output name of the evaluated output or null if not set
-
getValue
TypedValue getValue()
- Returns:
- the value of the evaluated output or null if non set
-
-