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