@PublicEvolving public enum FunctionKind extends Enum<FunctionKind>
FunctionDefinition
.Enum Constant and Description |
---|
AGGREGATE |
ASYNC_SCALAR |
ASYNC_TABLE |
OTHER |
SCALAR |
TABLE |
TABLE_AGGREGATE |
Modifier and Type | Method and Description |
---|---|
static FunctionKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FunctionKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FunctionKind SCALAR
public static final FunctionKind ASYNC_SCALAR
public static final FunctionKind TABLE
public static final FunctionKind ASYNC_TABLE
public static final FunctionKind AGGREGATE
public static final FunctionKind TABLE_AGGREGATE
public static final FunctionKind OTHER
public static FunctionKind[] values()
for (FunctionKind c : FunctionKind.values()) System.out.println(c);
public static FunctionKind 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 © 2014–2024 The Apache Software Foundation. All rights reserved.