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()
Double
getDoubleValue()
Long
getLongValue()
String
getTextValue()
String
getTextValue2()
void
setByteArrayValue(byte[] bytes)
void
setDoubleValue(Double doubleValue)
void
setLongValue(Long longValue)
void
setTextValue(String textValue)
void
setTextValue2(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)
-
-