| Library | Package | Frames | Expand | Java Toolkit |
| Method Summary | |
|---|---|
| void | AssignValue
(RelationOwner Owner, String FunctionName, ParamValues Arguments, ParamValue Assignment)
Function called to evaluate a custom relation function invoked on the left hand side of a relation. |
| boolean | CheckArguments
(RelationOwner Owner, String FunctionName, ParamValues Arguments)
To check the validity of arguments of external function. |
| ParamValue | EvaluateFunction
(RelationOwner Owner, String FunctionName, ParamValues Arguments)
Function called to evaluate a custom relation function invoked on the right hand side of a relation. |
| Method Detail |
|---|
| CheckArguments |
|---|
| boolean | CheckArguments | (RelationOwner Owner, String FunctionName, ParamValues Arguments) |
| To check the validity of arguments of external function. This method can be used to check the contents of the arguments. If you want to restrict the arguments to be a certain number and a certain type, use the optional argument RelationFunctionOptions.GetArgumentTypes(/*optional*/ RelationFunctionArguments) instead.
|
| EvaluateFunction |
|---|
| ParamValue | EvaluateFunction | (RelationOwner Owner, String FunctionName, ParamValues Arguments) |
Function called to evaluate a custom relation function invoked
on the right hand side of a relation.
|
| AssignValue |
|---|
| void | AssignValue | (RelationOwner Owner, String FunctionName, ParamValues Arguments, ParamValue Assignment) |
Function called to evaluate a custom relation function invoked
on the left hand side of a relation.
|