public enum AggregationFunctionFactoryCodegenType extends java.lang.Enum<AggregationFunctionFactoryCodegenType>
Enum Constant and Description |
---|
CODEGEN_MANAGED
Use when the generated code receives a single "value" reference that contains the value object (or object-array for multivalue).
|
CODEGEN_NONE
Use when not generating code.
|
CODEGEN_UNMANAGED
Use when the generated code takes care of "distinct" and "filter" functionaltity.
|
Modifier and Type | Method and Description |
---|---|
static AggregationFunctionFactoryCodegenType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AggregationFunctionFactoryCodegenType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregationFunctionFactoryCodegenType CODEGEN_NONE
Methods to generate code do not need to be implemented.
public static final AggregationFunctionFactoryCodegenType CODEGEN_UNMANAGED
Methods to generate code must be implemented (except for apply-managed) and the apply-unmanaged methods must provide code to apply.
public static final AggregationFunctionFactoryCodegenType CODEGEN_MANAGED
Methods to generate code must be implemented (except for apply-unmanaged) and the apply-managed methods must provide code to apply.
public static AggregationFunctionFactoryCodegenType[] values()
for (AggregationFunctionFactoryCodegenType c : AggregationFunctionFactoryCodegenType.values()) System.out.println(c);
public static AggregationFunctionFactoryCodegenType 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