public static enum ConfigurationCompilerPlugInSingleRowFunction.FilterOptimizable extends 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(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(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.