org.activiti.engine.impl.variable
接口 ValueFields

所有已知实现类:
HistoricDetailVariableInstanceUpdateEntity, HistoricVariableInstanceEntity, VariableInstanceEntity

public interface ValueFields

Common interface for regular and historic variable entities.

作者:
Tom Baeyens

方法摘要
 ByteArrayEntity getByteArrayValue()
          已过时。 use getBytes.
 String getByteArrayValueId()
          已过时。 should no longer be used
 byte[] getBytes()
           
 Object getCachedValue()
           
 Double getDoubleValue()
           
 Long getLongValue()
           
 String getName()
           
 String getTextValue()
           
 String getTextValue2()
           
 void setByteArrayValue(byte[] bytes)
          已过时。 use setBytes.
 void setBytes(byte[] bytes)
          Sets the byte array value.
 void setCachedValue(Object cachedValue)
           
 void setDoubleValue(Double doubleValue)
          Sets the double value.
 void setLongValue(Long longValue)
          Sets the long value.
 void setTextValue(String textValue)
          Sets the first text value.
 void setTextValue2(String textValue2)
          Sets second text value.
 

方法详细信息

getName

String getName()
返回:
the name of the variable

getTextValue

String getTextValue()
返回:
the first text value, if any, or null.

setTextValue

void setTextValue(String textValue)
Sets the first text value. A value of null is allowed.


getTextValue2

String getTextValue2()
返回:
the second text value, if any, or null.

setTextValue2

void setTextValue2(String textValue2)
Sets second text value. A value of null is allowed.


getLongValue

Long getLongValue()
返回:
the long value, if any, or null.

setLongValue

void setLongValue(Long longValue)
Sets the long value. A value of null is allowed.


getDoubleValue

Double getDoubleValue()
返回:
the double value, if any, or null.

setDoubleValue

void setDoubleValue(Double doubleValue)
Sets the double value. A value of null is allowed.


getBytes

byte[] getBytes()
返回:
the byte array value, if any, or null.

setBytes

void setBytes(byte[] bytes)
Sets the byte array value. A value of null is allowed.


getByteArrayValueId

@Deprecated
String getByteArrayValueId()
已过时。 should no longer be used

返回:
the id of the byte array entity value, or null if the byte array value is null.

getByteArrayValue

@Deprecated
ByteArrayEntity getByteArrayValue()
已过时。 use getBytes.

返回:
the ByteArrayEntity that contains the byte array value, or null if the byte array value is null.

setByteArrayValue

@Deprecated
void setByteArrayValue(byte[] bytes)
已过时。 use setBytes.


getCachedValue

Object getCachedValue()

setCachedValue

void setCachedValue(Object cachedValue)


Copyright © 2013 Alfresco. All rights reserved.