public static enum Function.Kind extends Enum<Function.Kind>
| Enum Constant and Description |
|---|
META
A function that dispatches to other functions and does not contain its
own kernels.
|
SCALAR
A function that performs scalar data operations on whole arrays of
data.
|
SCALAR_AGGREGATE
A function that computes scalar summary statistics from array input.
|
VECTOR
A function with array input and output whose behavior depends on the
values of the entire arrays passed, rather than the value of each scalar
value.
|
| Modifier and Type | Field and Description |
|---|---|
int |
value |
| Modifier and Type | Method and Description |
|---|---|
Function.Kind |
intern() |
String |
toString() |
static Function.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Function.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Function.Kind SCALAR
public static final Function.Kind VECTOR
public static final Function.Kind SCALAR_AGGREGATE
public static final Function.Kind META
public static Function.Kind[] values()
for (Function.Kind c : Function.Kind.values()) System.out.println(c);
public static Function.Kind 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 Function.Kind intern()
public String toString()
toString in class Enum<Function.Kind>Copyright © 2021. All rights reserved.