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