Package com.flowable.core.content.api
Interface MetadataInstance
-
- All Known Subinterfaces:
MetadataInstanceEntity
- All Known Implementing Classes:
MetadataInstanceEntityImpl
public interface MetadataInstance
Generic variable class that can be reused for V6 and V5 engine.- Author:
- Tijs Rademakers
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description byte[]
getBytes()
java.lang.String
getContentItemId()
java.lang.Double
getDoubleValue()
java.lang.String
getId()
java.lang.Long
getLongValue()
java.lang.String
getName()
java.lang.String
getTextValue()
java.lang.String
getTextValue2()
java.lang.String
getTypeName()
java.lang.Object
getValue()
-
-
-
Method Detail
-
getId
java.lang.String getId()
- Returns:
- the id of the variable
-
getName
java.lang.String getName()
- Returns:
- the name of the variable
-
getContentItemId
java.lang.String getContentItemId()
- Returns:
- the process instance id of the variable
-
getTextValue
java.lang.String getTextValue()
- Returns:
- the first text value, if any, or null.
-
getTextValue2
java.lang.String getTextValue2()
- Returns:
- the second text value, if any, or null.
-
getLongValue
java.lang.Long getLongValue()
- Returns:
- the long value, if any, or null.
-
getDoubleValue
java.lang.Double getDoubleValue()
- Returns:
- the double value, if any, or null.
-
getBytes
byte[] getBytes()
- Returns:
- the byte array value, if any, or null.
-
getValue
java.lang.Object getValue()
-
getTypeName
java.lang.String getTypeName()
-
-