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