public static enum FunctionTemplate.FunctionScope extends Enum<FunctionTemplate.FunctionScope>
Enum Constant and Description |
---|
HOLISTIC_AGGREGATE |
POINT_AGGREGATE |
RANGE_AGGREGATE |
SIMPLE |
Modifier and Type | Method and Description |
---|---|
static FunctionTemplate.FunctionScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FunctionTemplate.FunctionScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FunctionTemplate.FunctionScope SIMPLE
public static final FunctionTemplate.FunctionScope POINT_AGGREGATE
public static final FunctionTemplate.FunctionScope HOLISTIC_AGGREGATE
public static final FunctionTemplate.FunctionScope RANGE_AGGREGATE
public static FunctionTemplate.FunctionScope[] values()
for (FunctionTemplate.FunctionScope c : FunctionTemplate.FunctionScope.values()) System.out.println(c);
public static FunctionTemplate.FunctionScope 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 © 2017 The Apache Software Foundation. All rights reserved.