Class DmnEvaluatedOutputImpl
- java.lang.Object
-
- org.camunda.bpm.dmn.engine.impl.delegate.DmnEvaluatedOutputImpl
-
- All Implemented Interfaces:
DmnEvaluatedOutput
public class DmnEvaluatedOutputImpl extends Object implements DmnEvaluatedOutput
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringidprotected Stringnameprotected StringoutputNameprotected TypedValuevalue
-
Constructor Summary
Constructors Constructor Description DmnEvaluatedOutputImpl(DmnDecisionTableOutputImpl decisionTableOutput, TypedValue value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetId()StringgetName()StringgetOutputName()TypedValuegetValue()inthashCode()voidsetId(String id)voidsetName(String name)voidsetOutputName(String outputName)voidsetValue(TypedValue value)StringtoString()
-
-
-
Field Detail
-
id
protected String id
-
name
protected String name
-
outputName
protected String outputName
-
value
protected TypedValue value
-
-
Constructor Detail
-
DmnEvaluatedOutputImpl
public DmnEvaluatedOutputImpl(DmnDecisionTableOutputImpl decisionTableOutput, TypedValue value)
-
-
Method Detail
-
getId
public String getId()
- Specified by:
getIdin interfaceDmnEvaluatedOutput- Returns:
- the id of the evaluated output or null if not set
-
setId
public void setId(String id)
-
getName
public String getName()
- Specified by:
getNamein interfaceDmnEvaluatedOutput- Returns:
- the name of the evaluated output or null if not set
-
setName
public void setName(String name)
-
getOutputName
public String getOutputName()
- Specified by:
getOutputNamein interfaceDmnEvaluatedOutput- Returns:
- the output name of the evaluated output or null if not set
-
setOutputName
public void setOutputName(String outputName)
-
getValue
public TypedValue getValue()
- Specified by:
getValuein interfaceDmnEvaluatedOutput- Returns:
- the value of the evaluated output or null if non set
-
setValue
public void setValue(TypedValue value)
-
-