Interface ValueFields
-
- All Superinterfaces:
Nameable
- All Known Implementing Classes:
HistoricDecisionInputInstanceEntity,HistoricDecisionOutputInstanceEntity,HistoricDetailVariableInstanceUpdateEntity,HistoricVariableInstanceEntity,SingleQueryVariableValueCondition,ValueFieldsImpl,VariableInstanceEntity
public interface ValueFields extends Nameable
- Author:
- Tom Baeyens, Daniel Meyer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description byte[]getByteArrayValue()java.lang.DoublegetDoubleValue()java.lang.LonggetLongValue()java.lang.StringgetTextValue()java.lang.StringgetTextValue2()voidsetByteArrayValue(byte[] bytes)voidsetDoubleValue(java.lang.Double doubleValue)voidsetLongValue(java.lang.Long longValue)voidsetTextValue(java.lang.String textValue)voidsetTextValue2(java.lang.String textValue2)
-
-
-
Method Detail
-
getTextValue
java.lang.String getTextValue()
-
setTextValue
void setTextValue(java.lang.String textValue)
-
getTextValue2
java.lang.String getTextValue2()
-
setTextValue2
void setTextValue2(java.lang.String textValue2)
-
getLongValue
java.lang.Long getLongValue()
-
setLongValue
void setLongValue(java.lang.Long longValue)
-
getDoubleValue
java.lang.Double getDoubleValue()
-
setDoubleValue
void setDoubleValue(java.lang.Double doubleValue)
-
getByteArrayValue
byte[] getByteArrayValue()
-
setByteArrayValue
void setByteArrayValue(byte[] bytes)
-
-