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()DoublegetDoubleValue()LonggetLongValue()StringgetTextValue()StringgetTextValue2()voidsetByteArrayValue(byte[] bytes)voidsetDoubleValue(Double doubleValue)voidsetLongValue(Long longValue)voidsetTextValue(String textValue)voidsetTextValue2(String textValue2)
-
-
-
Method Detail
-
getTextValue
String getTextValue()
-
setTextValue
void setTextValue(String textValue)
-
getTextValue2
String getTextValue2()
-
setTextValue2
void setTextValue2(String textValue2)
-
getLongValue
Long getLongValue()
-
setLongValue
void setLongValue(Long longValue)
-
getDoubleValue
Double getDoubleValue()
-
setDoubleValue
void setDoubleValue(Double doubleValue)
-
getByteArrayValue
byte[] getByteArrayValue()
-
setByteArrayValue
void setByteArrayValue(byte[] bytes)
-
-