public static enum FunctionInfo.Provider extends Enum<FunctionInfo.Provider>
Enum Constant and Description |
---|
JIFFLE
A function provided by JiffleFunctions class.
|
MATH
A function provided by java.lang.Math.
|
PROXY
A function that is a proxy for a runtime class
field or method.
|
Modifier and Type | Method and Description |
---|---|
static FunctionInfo.Provider |
get(String name)
Gets the
Provider for a given provider name. |
static FunctionInfo.Provider |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FunctionInfo.Provider[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FunctionInfo.Provider JIFFLE
public static final FunctionInfo.Provider MATH
public static final FunctionInfo.Provider PROXY
public static FunctionInfo.Provider[] values()
for (FunctionInfo.Provider c : FunctionInfo.Provider.values()) System.out.println(c);
public static FunctionInfo.Provider 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 nullpublic static FunctionInfo.Provider get(String name)
Provider
for a given provider name.name
- the provider name to look upProvider
or null if the name was not foundCopyright © 2006–2018 GeoSolutions. All rights reserved.