boolean |
DataContainer.ignoredValue(String parameterName) |
Returns whether the value of the designated output parameter is or has not
been set (ignored) by the application.
|
boolean |
IndexedAccessDataContainer.ignoredValue(String parameterName,
int index) |
Returns whether the value of the element at the designated index at the
output parameter list of the designated name is or has not been set
(ignored) by the application.
|
void |
DataContainer.ignoreValue(SessionToken session,
String parameterName) |
Ignores the value of the designated parameter.
|
void |
IndexedAccessDataContainer.ignoreValue(SessionToken session,
String parameterName,
int index) |
Ignores the value of the element at the designated index at the output
parameter list of the designated name.
|
boolean |
IndexedAccessDataContainer.isNull(SessionToken session,
String parameterName,
int index) |
Returns whether the value of the element at the designated index at the
input parameter list of the designated name is NULL.
|
boolean |
InputDataContainer.isNull(SessionToken session,
String parameterName) |
Returns whether the value of the designated input parameter is NULL which
means the data element has not been written or has been consumed yet or has
been explicitly set to NULL by a previous application.
|
boolean |
IndexedAccessDataContainer.retrieveBoolean(SessionToken session,
String parameterName,
int index) |
Retrieves the boolean value of the element of type BOOLEAN at the designated index at the input
parameter list of the designated name.
|
boolean |
InputDataContainer.retrieveBoolean(SessionToken session,
String parameterName) |
Retrieves the boolean value of the designated input parameter of type BOOLEAN.
|
Date |
IndexedAccessDataContainer.retrieveDate(SessionToken session,
String parameterName,
int index) |
Retrieves the date value of the element of type DATE at the designated index at the input
parameter list of the designated name.
|
Date |
InputDataContainer.retrieveDate(SessionToken session,
String parameterName) |
Retrieves the date value of the designated input parameter of type DATE.
|
double |
IndexedAccessDataContainer.retrieveFloat(SessionToken session,
String parameterName,
int index) |
Retrieves the double value of the element of type FLOAT at the designated index at the input
parameter list of the designated name.
|
double |
InputDataContainer.retrieveFloat(SessionToken session,
String parameterName) |
Retrieves the double value of the designated input parameter of type FLOAT.
|
long |
IndexedAccessDataContainer.retrieveInteger(SessionToken session,
String parameterName,
int index) |
Retrieves the long value of the element of type INTEGER at the designated index at the input
parameter list of the designated name.
|
long |
InputDataContainer.retrieveInteger(SessionToken session,
String parameterName) |
Retrieves the long value of the designated input parameter of type INTEGER.
|
String |
IndexedAccessDataContainer.retrieveString(SessionToken session,
String parameterName,
int index) |
Retrieves the String value of the element of type STRING at the designated index at the input
parameter list of the designated name.
|
String |
InputDataContainer.retrieveString(SessionToken session,
String parameterName) |
Retrieves the string value of the designated input parameter of type STRING.
|
UDTValue |
IndexedAccessDataContainer.retrieveUDT(SessionToken session,
String parameterName,
int index) |
Retrieves (the proxy of) the value of the element of user-defined type (UDT) at the designated
index at the input parameter list of the designated name.
|
UDTValue |
InputDataContainer.retrieveUDT(SessionToken session,
String parameterName) |
Retrieves (the proxy of) the value of the designated input parameter of user-defined type
(UDT).
|
URI |
IndexedAccessDataContainer.retrieveURI(SessionToken session,
String parameterName,
int index) |
Retrieves the URI value of the element of type URI at the designated index at the input
parameter list of the designated name.
|
URI |
InputDataContainer.retrieveURI(SessionToken session,
String parameterName) |
Retrieves the URI value of the designated input parameter of type URI.
|
void |
InstanceDataContainer.setBoolean(String parameterName,
boolean value) |
Sets the BOOLEAN value of the designated instance input parameter.
|
void |
InstanceDataContainer.setDate(String parameterName,
Date value) |
Sets the DATE value of the designated instance input parameter.
|
void |
InstanceDataContainer.setFloat(String parameterName,
double value) |
Sets the FLOAT value of the designated instance input parameter.
|
void |
InstanceDataContainer.setInteger(String parameterName,
long value) |
Sets the INTEGER value of the designated instance input parameter.
|
void |
InstanceDataContainer.setNull(String parameterName) |
Sets the value of the designated instance input parameter to
NULL, which means the value is undefined.
|
void |
InstanceDataContainer.setString(String parameterName,
String value) |
Sets the string value of the designated instance input parameter.
|
void |
InstanceDataContainer.setUDT(String parameterName,
UDTValue value) |
Sets the value of the designated instance input parameter of the process instance and the
corresponding metadata which is the writing node and its current iteration.
|
void |
InstanceDataContainer.setURI(String parameterName,
URI value) |
Sets the URI value of the designated instance input parameter.
|
void |
DataContainer.storeBoolean(SessionToken session,
String parameterName,
boolean value) |
Stores the BOOLEAN value of the designated parameter of the process
instance and the corresponding metadata which is the writing node and its
current iteration.
|
void |
IndexedAccessDataContainer.storeBoolean(SessionToken session,
String parameterName,
int index,
boolean value) |
Stores the BOOLEAN value to the element at the designated index at the
output parameter list of the designated name.
|
void |
DataContainer.storeDate(SessionToken session,
String parameterName,
Date value) |
Stores the DATE value of the designated parameter of the process instance
and the corresponding metadata which is the writing node and its current
iteration.
|
void |
IndexedAccessDataContainer.storeDate(SessionToken session,
String parameterName,
int index,
Date value) |
Stores the DATE value to the element at the designated index at the
output parameter list of the designated name.
|
boolean |
DataContainer.storedBoolean(String parameterName) |
Retrieves the boolean value of the designated output parameter of type BOOLEAN stored before.
|
boolean |
IndexedAccessDataContainer.storedBoolean(String parameterName,
int index) |
Retrieves the boolean value of the element at the designated index at the output parameter list
of the designated name stored before.
|
Date |
DataContainer.storedDate(String parameterName) |
Retrieves the date value of the designated output parameter of type DATE stored before.
|
Date |
IndexedAccessDataContainer.storedDate(String parameterName,
int index) |
Retrieves the date value of the element at the designated index at the output parameter list of
the designated name stored before.
|
double |
DataContainer.storedFloat(String parameterName) |
Retrieves the double value of the designated output parameter of type FLOAT stored before.
|
double |
IndexedAccessDataContainer.storedFloat(String parameterName,
int index) |
Retrieves the double value of the element at the designated index at the output parameter list
of the designated name stored before.
|
long |
DataContainer.storedInteger(String parameterName) |
Retrieves the long value of the designated output parameter of type INTEGER stored before.
|
long |
IndexedAccessDataContainer.storedInteger(String parameterName,
int index) |
Retrieves the long value of the element at the designated index at the output parameter list of
the designated name stored before.
|
String |
DataContainer.storedString(String parameterName) |
Retrieves the string value of the designated output parameter of type STRING stored before.
|
String |
IndexedAccessDataContainer.storedString(String parameterName,
int index) |
Retrieves the String value of the element at the designated index at the output parameter list
of the designated name stored before.
|
UDTValue |
DataContainer.storedUDT(String parameterName) |
Retrieves (the proxy of) the value of the designated output parameter of user-defined type
(UDT) stored before.
|
UDTValue |
IndexedAccessDataContainer.storedUDT(String parameterName,
int index) |
Retrieves (the proxy of) the value of the element of user-defined type at the designated index
at the output parameter list of the designated name stored before.
|
URI |
DataContainer.storedURI(String parameterName) |
Retrieves the URI value of the designated output parameter of type URI stored before.
|
URI |
IndexedAccessDataContainer.storedURI(String parameterName,
int index) |
Retrieves the URI value of the element at the designated index at the output parameter list of
the designated name stored before.
|
void |
DataContainer.storeFloat(SessionToken session,
String parameterName,
double value) |
Stores the FLOAT value of the designated parameter of the process instance
and the corresponding metadata which is the writing node and its current
iteration.
|
void |
IndexedAccessDataContainer.storeFloat(SessionToken session,
String parameterName,
int index,
double value) |
Stores the FLOAT value to the element at the designated index at the output
parameter list of the designated name.
|
void |
DataContainer.storeInteger(SessionToken session,
String parameterName,
long value) |
Stores the INTEGER value of the designated parameter of the process
instance and the corresponding metadata which is the writing node and its
current iteration.
|
void |
IndexedAccessDataContainer.storeInteger(SessionToken session,
String parameterName,
int index,
long value) |
Stores the INTEGER value to the element at the designated index at the
output parameter list of the designated name.
|
void |
DataContainer.storeString(SessionToken session,
String parameterName,
String value) |
Stores the string value of the designated parameter of the process instance
and the corresponding metadata which is the writing node and its current
iteration.
|
void |
IndexedAccessDataContainer.storeString(SessionToken session,
String parameterName,
int index,
String value) |
Stores the STRING value to the element at the designated index at the
output parameter list of the designated name.
|
void |
DataContainer.storeUDT(SessionToken session,
String parameterName,
UDTValue value) |
Stores the value of user-defined type of the designated parameter of the process instance and
the corresponding metadata which is the writing node and its current iteration.
|
void |
IndexedAccessDataContainer.storeUDT(SessionToken session,
String parameterName,
int index,
UDTValue value) |
Stores the value of user-defined type to the element at the designated index at the output
parameter list of the designated name.
|
void |
DataContainer.storeURI(SessionToken session,
String parameterName,
URI value) |
Stores the URI value of the designated parameter of the process instance
and the corresponding metadata which is the writing node and its current
iteration.
|
void |
IndexedAccessDataContainer.storeURI(SessionToken session,
String parameterName,
int index,
URI value) |
Stores the URI value to the element at the designated index at the output
parameter list of the designated name.
|