public static enum ConfigurationCompilerPlugInSingleRowFunction.FilterOptimizable extends java.lang.Enum<ConfigurationCompilerPlugInSingleRowFunction.FilterOptimizable>
Enum Constant and Description |
---|
DISABLED
The runtimedoes not consider the single-row function for optimizing evaluation: The function gets evaluated for each event possibly multiple times.
|
ENABLED
The runtimeconsiders the single-row function for optimizing evaluation: The function gets evaluated only once per event.
|
Modifier and Type | Method and Description |
---|---|
static ConfigurationCompilerPlugInSingleRowFunction.FilterOptimizable |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConfigurationCompilerPlugInSingleRowFunction.FilterOptimizable[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigurationCompilerPlugInSingleRowFunction.FilterOptimizable DISABLED
public static final ConfigurationCompilerPlugInSingleRowFunction.FilterOptimizable ENABLED
public static ConfigurationCompilerPlugInSingleRowFunction.FilterOptimizable[] values()
for (ConfigurationCompilerPlugInSingleRowFunction.FilterOptimizable c : ConfigurationCompilerPlugInSingleRowFunction.FilterOptimizable.values()) System.out.println(c);
public static ConfigurationCompilerPlugInSingleRowFunction.FilterOptimizable 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 null