public static enum KeepDbInfo.FormulaEngine extends java.lang.Enum<KeepDbInfo.FormulaEngine>
Formula engine to use for calculating formulas. Currently only Domino’s formula engine, but will allow Open Formula. Open Formula will become the de facto preferred option
Enum Constant and Description |
---|
DOMINO
Formula native Domino
|
JAVASCRIPT
javaScript function run in Nashorn
|
OPENAPI
OpenAPI formula implementation
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static KeepDbInfo.FormulaEngine |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KeepDbInfo.FormulaEngine[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeepDbInfo.FormulaEngine OPENAPI
public static final KeepDbInfo.FormulaEngine DOMINO
public static final KeepDbInfo.FormulaEngine JAVASCRIPT
public static KeepDbInfo.FormulaEngine[] values()
for (KeepDbInfo.FormulaEngine c : KeepDbInfo.FormulaEngine.values()) System.out.println(c);
public static KeepDbInfo.FormulaEngine valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getValue()