@Deprecated public interface TableFunctionExecution
public Decimal computePremium(final Integer age) {
return ((Decimal)(new TableFunctionExecution() {
public Object execute() {
TableWithMultipleContentsRow row = TableWithMultipleContents.getInstance(getRepository(),
"tables.TableWithMultipleContents1").findRow(age);
if (row != null) {
return row.getRate();
}
return Decimal.NULL;
}
}).execute());
}
| Modifier and Type | Method and Description |
|---|---|
Object |
execute()
Deprecated.
Executes the java code that is generated for a table function call of the formula language.
|
Object execute()
Copyright © 2021. All rights reserved.