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 String
id
protected String
name
protected String
outputName
protected TypedValue
value
-
Constructor Summary
Constructors Constructor Description DmnEvaluatedOutputImpl(DmnDecisionTableOutputImpl decisionTableOutput, TypedValue value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getId()
String
getName()
String
getOutputName()
TypedValue
getValue()
int
hashCode()
void
setId(String id)
void
setName(String name)
void
setOutputName(String outputName)
void
setValue(TypedValue value)
String
toString()
-
-
-
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:
getId
in 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:
getName
in 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:
getOutputName
in 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:
getValue
in interfaceDmnEvaluatedOutput
- Returns:
- the value of the evaluated output or null if non set
-
setValue
public void setValue(TypedValue value)
-
-