Class GeneratedFunction<F extends Function>
- java.lang.Object
-
- org.apache.flink.table.runtime.generated.GeneratedClass<F>
-
- org.apache.flink.table.runtime.generated.GeneratedFunction<F>
-
- Type Parameters:
F
- type of Function
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
GeneratedFilterCondition
public class GeneratedFunction<F extends Function> extends GeneratedClass<F>
Describes a generatedFunction
.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GeneratedFunction(String className, String code, Object[] references)
GeneratedFunction(String className, String code, Object[] references, ReadableConfig conf)
Creates a GeneratedFunction.
-
Method Summary
-
Methods inherited from class org.apache.flink.table.runtime.generated.GeneratedClass
compile, getClass, getClassName, getCode, getReferences, newInstance, newInstance
-
-
-
-
Constructor Detail
-
GeneratedFunction
@VisibleForTesting public GeneratedFunction(String className, String code, Object[] references)
-
GeneratedFunction
public GeneratedFunction(String className, String code, Object[] references, ReadableConfig conf)
Creates a GeneratedFunction.- Parameters:
className
- class name of the generated Function.code
- code of the generated Function.references
- referenced objects of the generated Function.conf
- configuration when generating Function.
-
-