Interface DataObjectVariable
-
- All Known Subinterfaces:
DataObjectVariableEntity
- All Known Implementing Classes:
DataObjectVariableEntityImpl
public interface DataObjectVariable
Data Object variable.- Author:
- Tijs Rademakers
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description byte[]
getBytes()
String
getDataInstanceId()
Double
getDoubleValue()
String
getId()
Long
getLongValue()
String
getName()
String
getTextValue()
String
getTextValue2()
String
getTypeName()
Object
getValue()
-
-
-
Method Detail
-
getId
String getId()
- Returns:
- the id of the variable
-
getName
String getName()
- Returns:
- the name of the variable
-
getDataInstanceId
String getDataInstanceId()
- Returns:
- the data instance id of the variable
-
getTextValue
String getTextValue()
- Returns:
- the first text value, if any, or null.
-
getTextValue2
String getTextValue2()
- Returns:
- the second text value, if any, or null.
-
getLongValue
Long getLongValue()
- Returns:
- the long value, if any, or null.
-
getDoubleValue
Double getDoubleValue()
- Returns:
- the double value, if any, or null.
-
getBytes
byte[] getBytes()
- Returns:
- the byte array value, if any, or null.
-
getValue
Object getValue()
-
getTypeName
String getTypeName()
-
-