public static enum ScalarFunctionImplementation.ArgumentType extends Enum<ScalarFunctionImplementation.ArgumentType>
| Enum Constant and Description |
|---|
FUNCTION_TYPE |
VALUE_TYPE |
| Modifier and Type | Method and Description |
|---|---|
static ScalarFunctionImplementation.ArgumentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScalarFunctionImplementation.ArgumentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScalarFunctionImplementation.ArgumentType VALUE_TYPE
public static final ScalarFunctionImplementation.ArgumentType FUNCTION_TYPE
public static ScalarFunctionImplementation.ArgumentType[] values()
for (ScalarFunctionImplementation.ArgumentType c : ScalarFunctionImplementation.ArgumentType.values()) System.out.println(c);
public static ScalarFunctionImplementation.ArgumentType 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 © 2012–2019. All rights reserved.