Package org.apache.flink.table.api
Class FunctionDescriptor.Builder
java.lang.Object
org.apache.flink.table.api.FunctionDescriptor.Builder
- Enclosing class:
- FunctionDescriptor
Builder for
FunctionDescriptor.-
Method Summary
Modifier and TypeMethodDescriptionbuild()language(FunctionLanguage language) Sets the language of the function.Adds an option to the function descriptor.Adds multiple options to the function descriptor.resourceUri(ResourceUri uri) Adds a single resource URI to the function descriptor.resourceUris(List<ResourceUri> uri) Adds a list of resource URIs to the function descriptor.
-
Method Details
-
language
Sets the language of the function. Equivalent to theLANGUAGEclause in the "CREATE FUNCTION" SQL DDL statement. -
resourceUris
Adds a list of resource URIs to the function descriptor. Equivalent to theUSINGclause in the "CREATE FUNCTION" SQL DDL statement. -
resourceUri
Adds a single resource URI to the function descriptor. Equivalent to theUSINGclause in the "CREATE FUNCTION" SQL DDL statement. -
option
Adds an option to the function descriptor. Equivalent to theWITHclause in the "CREATE FUNCTION" SQL DDL statement. -
options
Adds multiple options to the function descriptor. Equivalent to theWITHclause in the "CREATE FUNCTION" SQL DDL statement. -
build
-