| Package | Description |
|---|---|
| de.aristaflow.adept2.core.datamanager |
| Modifier and Type | Method and Description |
|---|---|
boolean |
UDFExecution.executeBooleanFunction(SessionToken session,
UDTValue proxy,
java.lang.String functionName)
Executes the designated user-defined function for the designated value of a
UDT and returns the resulting boolean value.
|
double |
UDFExecution.executeFloatFunction(SessionToken session,
UDTValue proxy,
java.lang.String functionName)
Executes the designated user-defined function for the designated value of a
UDT and returns the resulting double value.
|
long |
UDFExecution.executeIntegerFunction(SessionToken session,
UDTValue proxy,
java.lang.String functionName)
Executes the designated user-defined function for the designated value of a
UDT and returns the resulting long value.
|
java.lang.String |
UDFExecution.executeStringFunction(SessionToken session,
UDTValue proxy,
java.lang.String functionName)
Executes the designated user-defined function for the designated value of a
UDT and returns the resulting string.
|
UDTValue |
UDFExecution.executeUDTFunction(SessionToken session,
UDTValue proxy,
java.lang.String functionName)
Executes the designated user-defined function for the designated value of a
UDT and returns the resulting UDT-value.
|
ServerUDTInputStream |
UDFExecution.executeUDTFunctionIncrementally(SessionToken session,
UDTValue proxy,
java.lang.String functionName)
Executes the designated user-defined function for the designated value of a
UDT and returns the resulting UDT-value as
ServerUDTInputStream. |
java.net.URI |
UDFExecution.executeURIFunction(SessionToken session,
UDTValue proxy,
java.lang.String functionName)
Executes the designated user-defined function for the designated value of a
UDT and returns the resulting reference.
|
void |
UDFExecution.executeVoidFunction(SessionToken session,
UDTValue proxy,
java.lang.String functionName)
Executes the designated user-defined function for the designated value of a
UDT.
|