public static enum ConfigurationCompilerPlugInSingleRowFunction.ValueCache extends Enum<ConfigurationCompilerPlugInSingleRowFunction.ValueCache>
Enum Constant and Description |
---|
CONFIGURED
Causes the runtimeto follow the runtime-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 runtimeto 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 ConfigurationCompilerPlugInSingleRowFunction.ValueCache |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigurationCompilerPlugInSingleRowFunction.ValueCache[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigurationCompilerPlugInSingleRowFunction.ValueCache DISABLED
public static final ConfigurationCompilerPlugInSingleRowFunction.ValueCache ENABLED
public static final ConfigurationCompilerPlugInSingleRowFunction.ValueCache CONFIGURED
public static ConfigurationCompilerPlugInSingleRowFunction.ValueCache[] values()
for (ConfigurationCompilerPlugInSingleRowFunction.ValueCache c : ConfigurationCompilerPlugInSingleRowFunction.ValueCache.values()) System.out.println(c);
public static ConfigurationCompilerPlugInSingleRowFunction.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 nullCopyright © 2005–2018. All rights reserved.