Class LongStringType
- java.lang.Object
-
- org.activiti.engine.impl.variable.ByteArrayType
-
- org.activiti.engine.impl.variable.SerializableType
-
- org.activiti.engine.impl.variable.LongStringType
-
- All Implemented Interfaces:
VariableType
public class LongStringType extends SerializableType
-
-
Field Summary
-
Fields inherited from class org.activiti.engine.impl.variable.SerializableType
trackDeserializedObjects, TYPE_NAME
-
-
Constructor Summary
Constructors Constructor Description LongStringType(int minLength)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetTypeName()name of variable type (limited to 100 characters length)booleanisAbleToStore(java.lang.Object value)-
Methods inherited from class org.activiti.engine.impl.variable.SerializableType
createObjectInputStream, createObjectOutputStream, deserialize, getValue, serialize, setValue
-
Methods inherited from class org.activiti.engine.impl.variable.ByteArrayType
isCachable
-
-
-
-
Method Detail
-
getTypeName
public java.lang.String getTypeName()
Description copied from interface:VariableTypename of variable type (limited to 100 characters length)- Specified by:
getTypeNamein interfaceVariableType- Overrides:
getTypeNamein classSerializableType
-
isAbleToStore
public boolean isAbleToStore(java.lang.Object value)
- Specified by:
isAbleToStorein interfaceVariableType- Overrides:
isAbleToStorein classSerializableType- Returns:
- whether this variable type can store the specified value.
-
-