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 String
id
protected String
inputVariable
protected String
name
protected TypedValue
value
-
Constructor Summary
Constructors Constructor Description DmnEvaluatedInputImpl(DmnDecisionTableInputImpl input)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getId()
String
getInputVariable()
String
getName()
TypedValue
getValue()
int
hashCode()
void
setId(String id)
void
setInputVariable(String inputVariable)
void
setName(String name)
void
setValue(TypedValue value)
String
toString()
-
-
-
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:
getId
in 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:
getName
in 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:
getInputVariable
in interfaceDmnEvaluatedInput
- Returns:
- the input variable name for the input
-
setInputVariable
public void setInputVariable(String inputVariable)
-
getValue
public TypedValue getValue()
- Specified by:
getValue
in interfaceDmnEvaluatedInput
- Returns:
- the value of the evaluated input or null if non set
-
setValue
public void setValue(TypedValue value)
-
-