Class DmnEvaluatedInputImpl
- java.lang.Object
-
- org.camunda.bpm.dmn.engine.impl.delegate.DmnEvaluatedInputImpl
-
- All Implemented Interfaces:
DmnEvaluatedInput
public class DmnEvaluatedInputImpl extends Object implements DmnEvaluatedInput
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringidprotected StringinputVariableprotected Stringnameprotected TypedValuevalue
-
Constructor Summary
Constructors Constructor Description DmnEvaluatedInputImpl(DmnDecisionTableInputImpl input)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetId()StringgetInputVariable()StringgetName()TypedValuegetValue()inthashCode()voidsetId(String id)voidsetInputVariable(String inputVariable)voidsetName(String name)voidsetValue(TypedValue value)StringtoString()
-
-
-
Field Detail
-
id
protected String id
-
name
protected String name
-
inputVariable
protected String inputVariable
-
value
protected TypedValue value
-
-
Constructor Detail
-
DmnEvaluatedInputImpl
public DmnEvaluatedInputImpl(DmnDecisionTableInputImpl input)
-
-
Method Detail
-
getId
public String getId()
- Specified by:
getIdin interfaceDmnEvaluatedInput- Returns:
- the id of the evaluated input or null if not set
-
setId
public void setId(String id)
-
getName
public String getName()
- Specified by:
getNamein interfaceDmnEvaluatedInput- Returns:
- the name of the evaluated input or null if not set
-
setName
public void setName(String name)
-
getInputVariable
public String getInputVariable()
- Specified by:
getInputVariablein interfaceDmnEvaluatedInput- Returns:
- the input variable name for the input
-
setInputVariable
public void setInputVariable(String inputVariable)
-
getValue
public TypedValue getValue()
- Specified by:
getValuein interfaceDmnEvaluatedInput- Returns:
- the value of the evaluated input or null if non set
-
setValue
public void setValue(TypedValue value)
-
-