Interface DataObjectVariable
- All Known Subinterfaces:
DataObjectVariableEntity
- All Known Implementing Classes:
DataObjectVariableEntityImpl
public interface DataObjectVariable
Data Object variable.
- Author:
- Tijs Rademakers
-
Method Summary
Modifier and Type Method Description byte[]
getBytes()
java.lang.String
getDataInstanceId()
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 Details
-
getId
java.lang.String getId()- Returns:
- the id of the variable
-
getName
java.lang.String getName()- Returns:
- the name of the variable
-
getDataInstanceId
java.lang.String getDataInstanceId()- Returns:
- the data 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()
-