public static enum ConfigurationPlugInSingleRowFunction.ValueCache extends Enum<ConfigurationPlugInSingleRowFunction.ValueCache>
Enum Constant and Description |
---|
CONFIGURED
Causes the engine to follow the engine-wide policy as configured for user-defined functions.
|
DISABLED
The default, the result of a single-row function is always computed anew.
|
ENABLED
Causes the engine to not actually invoke the single-row function and instead return a cached precomputed value
when all parameters are constants or there are no parameters.
|
Modifier and Type | Method and Description |
---|---|
static ConfigurationPlugInSingleRowFunction.ValueCache |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigurationPlugInSingleRowFunction.ValueCache[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigurationPlugInSingleRowFunction.ValueCache DISABLED
public static final ConfigurationPlugInSingleRowFunction.ValueCache ENABLED
public static final ConfigurationPlugInSingleRowFunction.ValueCache CONFIGURED
public static ConfigurationPlugInSingleRowFunction.ValueCache[] values()
for (ConfigurationPlugInSingleRowFunction.ValueCache c : ConfigurationPlugInSingleRowFunction.ValueCache.values()) System.out.println(c);
public static ConfigurationPlugInSingleRowFunction.ValueCache valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null