Class FunctionDescriptor.Builder

    • Method Detail

      • language

        public FunctionDescriptor.Builder language​(org.apache.flink.table.catalog.FunctionLanguage language)
        Sets the language of the function. Equivalent to the LANGUAGE clause in the "CREATE FUNCTION" SQL DDL statement.
      • resourceUris

        public FunctionDescriptor.Builder resourceUris​(List<org.apache.flink.table.resource.ResourceUri> uri)
        Adds a list of resource URIs to the function descriptor. Equivalent to the USING clause in the "CREATE FUNCTION" SQL DDL statement.
      • resourceUri

        public FunctionDescriptor.Builder resourceUri​(org.apache.flink.table.resource.ResourceUri uri)
        Adds a single resource URI to the function descriptor. Equivalent to the USING clause in the "CREATE FUNCTION" SQL DDL statement.
      • option

        public FunctionDescriptor.Builder option​(String key,
                                                 String value)
        Adds an option to the function descriptor. Equivalent to the WITH clause in the "CREATE FUNCTION" SQL DDL statement.
      • options

        public FunctionDescriptor.Builder options​(Map<String,​String> options)
        Adds multiple options to the function descriptor. Equivalent to the WITH clause in the "CREATE FUNCTION" SQL DDL statement.