Interface ValueFields
-
- All Known Subinterfaces:
HistoricDetailVariableInstanceUpdateEntity,HistoricVariableInstanceEntity,VariableInstance,VariableInstanceEntity
- All Known Implementing Classes:
HistoricDetailVariableInstanceUpdateEntityImpl,HistoricVariableInstanceEntityImpl,TransientVariableInstance,VariableInstanceEntityImpl
@Internal public interface ValueFields
Common interface for regular and historic variable entities.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description byte[]getBytes()java.lang.ObjectgetCachedValue()java.lang.DoublegetDoubleValue()java.lang.StringgetExecutionId()java.lang.LonggetLongValue()java.lang.StringgetName()java.lang.StringgetProcessInstanceId()java.lang.StringgetTaskId()java.lang.StringgetTextValue()java.lang.StringgetTextValue2()voidsetBytes(byte[] bytes)Sets the byte array value.voidsetCachedValue(java.lang.Object cachedValue)voidsetDoubleValue(java.lang.Double doubleValue)Sets the double value.voidsetLongValue(java.lang.Long longValue)Sets the long value.voidsetTextValue(java.lang.String textValue)Sets the first text value.voidsetTextValue2(java.lang.String textValue2)Sets second text value.
-
-
-
Method Detail
-
getName
java.lang.String getName()
- Returns:
- the name of the variable
-
getProcessInstanceId
java.lang.String getProcessInstanceId()
- Returns:
- the process instance id of the variable
-
getExecutionId
java.lang.String getExecutionId()
- Returns:
- the execution id of the variable
-
getTaskId
java.lang.String getTaskId()
- Returns:
- the task id of the variable
-
getTextValue
java.lang.String getTextValue()
- Returns:
- the first text value, if any, or null.
-
setTextValue
void setTextValue(java.lang.String textValue)
Sets the first text value. A value of null is allowed.
-
getTextValue2
java.lang.String getTextValue2()
- Returns:
- the second text value, if any, or null.
-
setTextValue2
void setTextValue2(java.lang.String textValue2)
Sets second text value. A value of null is allowed.
-
getLongValue
java.lang.Long getLongValue()
- Returns:
- the long value, if any, or null.
-
setLongValue
void setLongValue(java.lang.Long longValue)
Sets the long value. A value of null is allowed.
-
getDoubleValue
java.lang.Double getDoubleValue()
- Returns:
- the double value, if any, or null.
-
setDoubleValue
void setDoubleValue(java.lang.Double doubleValue)
Sets the double value. A value of null is allowed.
-
getBytes
byte[] getBytes()
- Returns:
- the byte array value, if any, or null.
-
setBytes
void setBytes(byte[] bytes)
Sets the byte array value. A value of null is allowed.
-
getCachedValue
java.lang.Object getCachedValue()
-
setCachedValue
void setCachedValue(java.lang.Object cachedValue)
-
-