To work with the tool in Foresight Analytics Platform 10, use the new interface.
The function wizard for the JavaInvokeModule function looks as follows:
JavaInvokeModule(ModuleId, ClassName, MethodName, MethodSig, Param,…)
ModuleId. Java module identifier in repository.
ClassName. Class name.
MethodName. Executed method name.
MethodSig. JNI signature of the method.
Param1, Param2, …, ParamN. Parameters sent to method.
NOTE. To determine signatures in Java Native Interface (JNI) format, review the signature generation rules.
It returns result of static Java method execution.
NOTE. Before using the function, make sure that integration of Foresight Analytics Platform with Java is executed.
The function can contain several parameters. New formulas are added automatically in the formula wizard after the user puts the cursor into the field with parameter. If extra parameters are added, they should be left empty. If the function contains no parameters, leave the Param field empty.
Keep in mind the following when calling a Java function:
Class name and executed method name are case-sensitive.
Function parameters and returned result must have one of the following data types: Boolean, Byte, Short, Int, Long, Double, Float, Char.
TIP. For details about writing functions in the Java language, see Java documentation.
Consider the Java code contained in the Java module with the MOD_JAVA identifier:
public class math {
public static double staticFunc(double a, double b){
return (a + b)/2;
}
}
The table contains examples of formulas using the JavaInvokeModule function:
Formula | Result | Description |
=JavaInvokeModule("MOD_JAVA", "math", "staticFunc", "(DD)D", 4.0, 2.0) | 3.0 | The staticFunc arithmetic function is executed in the class named math. Parameters of real type are specified in the function - the a variable is set to 4.0, the b variable is set to 2.0. The method returns calculation result of arithmetic function. |
=JavaInvokeModule("MOD_JAVA", "math", "staticFunc", "(DD)D", C3, C4) | 5.0 | The staticFunc arithmetic function is executed in the class named math. Parameters of real type are specified in the function - the a variable is set to the value specified in the C3 cell, the b variable is set to the value specified in the C4 cell. Value contained in the C3 cell is 4.0, in the C4 cell - 6.0. The method returns calculation result of arithmetic function. |
See also: