Uses of Class
org.apache.flink.table.functions.ScalarFunction
-
-
Uses of ScalarFunction in org.apache.flink.python.tests.util
Subclasses of ScalarFunction in org.apache.flink.python.tests.util Modifier and Type Class Description class
AddOne
Scala UDF for testing. -
Uses of ScalarFunction in org.apache.flink.table.api
Methods in org.apache.flink.table.api with parameters of type ScalarFunction Modifier and Type Method Description void
TableEnvironment. registerFunction(String name, ScalarFunction function)
Deprecated. -
Uses of ScalarFunction in org.apache.flink.table.api.internal
Methods in org.apache.flink.table.api.internal with parameters of type ScalarFunction Modifier and Type Method Description void
TableEnvironmentImpl. registerFunction(String name, ScalarFunction function)
-
Uses of ScalarFunction in org.apache.flink.table.catalog
Methods in org.apache.flink.table.catalog with parameters of type ScalarFunction Modifier and Type Method Description void
FunctionCatalog. registerTempCatalogScalarFunction(ObjectIdentifier oi, ScalarFunction function)
Deprecated.void
FunctionCatalog. registerTempSystemScalarFunction(String name, ScalarFunction function)
Deprecated. -
Uses of ScalarFunction in org.apache.flink.table.examples.java.basics
Subclasses of ScalarFunction in org.apache.flink.table.examples.java.basics Modifier and Type Class Description static class
GettingStartedExample.AddressNormalizer
We can put frequently used procedures in user-defined functions. -
Uses of ScalarFunction in org.apache.flink.table.examples.java.functions
Subclasses of ScalarFunction in org.apache.flink.table.examples.java.functions Modifier and Type Class Description class
InternalRowMergerFunction
Merges two rows into a single row with unique field names. -
Uses of ScalarFunction in org.apache.flink.table.functions
Methods in org.apache.flink.table.functions that return ScalarFunction Modifier and Type Method Description ScalarFunction
ScalarFunctionDefinition. getScalarFunction()
Deprecated.Methods in org.apache.flink.table.functions with parameters of type ScalarFunction Modifier and Type Method Description static InputTypeStrategy
LegacyUserDefinedFunctionInference. getInputTypeStrategy(ScalarFunction func)
Deprecated.static TypeStrategy
LegacyUserDefinedFunctionInference. getOutputTypeStrategy(ScalarFunction func)
Deprecated.Constructors in org.apache.flink.table.functions with parameters of type ScalarFunction Constructor Description ScalarFunctionDefinition(String name, ScalarFunction scalarFunction)
Deprecated. -
Uses of ScalarFunction in org.apache.flink.table.functions.hive
Subclasses of ScalarFunction in org.apache.flink.table.functions.hive Modifier and Type Class Description class
HiveGenericUDF
A ScalarFunction implementation that calls Hive'sGenericUDF
.class
HiveScalarFunction<UDFType>
Abstract class to provide more information for HiveUDF
andGenericUDF
functions.class
HiveSimpleUDF
A ScalarFunction implementation that calls Hive'sUDF
. -
Uses of ScalarFunction in org.apache.flink.table.functions.python
Subclasses of ScalarFunction in org.apache.flink.table.functions.python Modifier and Type Class Description class
PythonScalarFunction
The wrapper of user defined python scalar function. -
Uses of ScalarFunction in org.apache.flink.table.runtime.functions.scalar
-
Uses of ScalarFunction in org.apache.flink.table.toolbox
Subclasses of ScalarFunction in org.apache.flink.table.toolbox Modifier and Type Class Description class
StringRegexReplaceFunction
Scalar function for replacing all occurrences of a regular expression with a replacement string. -
Uses of ScalarFunction in org.apache.flink.table.types.extraction
Method parameters in org.apache.flink.table.types.extraction with type arguments of type ScalarFunction Modifier and Type Method Description static TypeInference
TypeInferenceExtractor. forScalarFunction(DataTypeFactory typeFactory, Class<? extends ScalarFunction> function)
Extracts a type inference from aScalarFunction
.
-