Object |
ActivityData.getInputValue(ProcessModelParameter parameter) |
Retrieves the value of the designated input parameter as an object of the closest related java
type.
|
Object |
ActivityData.getInputValue(ProcessModelParameter parameter,
boolean required) |
Retrieves the value of the designated input parameter as an object of the closest related java
type.
|
Object |
ActivityData.getInputValue(ProcessModelParameter param,
boolean convert,
boolean required) |
Retrieves the value of the specified input parameter as an object of the closest related java
type or the appropriate converted type.
|
Object |
ActivityData.getInputValue(String parameterName) |
Retrieves the value of the specified input parameter as an object of the closest related java
type.
|
Object |
ActivityData.getInputValue(String parameterName,
boolean required) |
Retrieves the value of the specified input parameter as an object of the closest related java
type.
|
protected Object |
ActivityData.getInputValue(String parameterName,
ProcessConstants.AdeptDataType expDt,
boolean convert,
boolean required) |
Retrieves the value of the specified input parameter as an object of the closest related java
type.
|
Object |
ActivityData.getStoredValue(ProcessModelParameter parameter) |
Retrieves the stored value of the specified output parameter as an object of the closest
related java type.
|
Object |
ActivityData.getStoredValue(ProcessModelParameter param,
boolean convert) |
Retrieves the stored value of the specified output parameter as an object of the closest
related java type or the appropriate converted type.
|
Object |
ActivityData.getStoredValue(String parameterName) |
Retrieves the stored value of the specified output parameter as an object of the closest
related java type.
|
protected Object |
ActivityData.getStoredValue(String parameterName,
ProcessConstants.AdeptDataType expDt,
boolean convert) |
Retrieves the stored value of the specified output parameter as an object of the closest
related java type.
|
Object[] |
ActivityData.getStoredValues() |
Gets the stored values of the output parameter in an array of object ordered by their position.
|
boolean |
ActivityData.requireInputBoolean(String parameterName) |
Returns the value of the specified BOOLEAN input parameter or throws an
exception if the value is not available.
|
Date |
ActivityData.requireInputDate(String parameterName) |
Returns the value of the specified DATE input parameter or throws an
exception if the value is not available.
|
double |
ActivityData.requireInputFloat(String parameterName) |
Returns the value of the specified FLOAT input parameter or throws an
exception if the value is not available.
|
long |
ActivityData.requireInputInteger(String parameterName) |
Returns the value of the specified INTEGER input parameter or throws an
exception if the value is not available.
|
String |
ActivityData.requireInputString(String parameterName) |
Returns the value of the specified STRING input parameter or throws an
exception if the value is not available.
|
UDTValue |
ActivityData.requireInputUDT(String parameterName) |
Returns the value of the specified USERDEFINED input parameter or throws an exception if the
value is not available.
|
URI |
ActivityData.requireInputURI(String parameterName) |
Returns the value of the specified URI input parameter or throws an
exception if the value is not available.
|