public static enum PythonFunction.FunctionInterface extends Enum<PythonFunction.FunctionInterface>
| Enum Constant and Description |
|---|
FILTER_FUNCTION |
FLAT_MAP_FUNCTION |
KEY_FUNCTION |
MAP_FUNCTION |
REDUCE_FUNCTION |
SINK_FUNCTION |
SOURCE_FUNCTION |
| Modifier and Type | Method and Description |
|---|---|
static PythonFunction.FunctionInterface |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PythonFunction.FunctionInterface[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PythonFunction.FunctionInterface SOURCE_FUNCTION
public static final PythonFunction.FunctionInterface MAP_FUNCTION
public static final PythonFunction.FunctionInterface FLAT_MAP_FUNCTION
public static final PythonFunction.FunctionInterface FILTER_FUNCTION
public static final PythonFunction.FunctionInterface KEY_FUNCTION
public static final PythonFunction.FunctionInterface REDUCE_FUNCTION
public static final PythonFunction.FunctionInterface SINK_FUNCTION
public static PythonFunction.FunctionInterface[] values()
for (PythonFunction.FunctionInterface c : PythonFunction.FunctionInterface.values()) System.out.println(c);
public static PythonFunction.FunctionInterface 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 © 2021. All rights reserved.