Class Function

Object
org.apache.spark.sql.catalog.Function
All Implemented Interfaces:
org.apache.spark.sql.catalyst.DefinedByConstructorParams

public class Function extends Object implements org.apache.spark.sql.catalyst.DefinedByConstructorParams
A user-defined function in Spark, as returned by listFunctions method in Catalog.

param: name name of the function. param: catalog name of the catalog that the table belongs to. param: namespace the namespace that the table belongs to. param: description description of the function; description can be null. param: className the fully qualified class name of the function. param: isTemporary whether the function is a temporary function or not.

Since:
2.0.0
  • Constructor Details

  • Method Details

    • catalog

      public String catalog()
    • className

      public String className()
    • database

      public String database()
    • description

      public String description()
    • isTemporary

      public boolean isTemporary()
    • name

      public String name()
    • namespace

      public String[] namespace()
    • toString

      public String toString()
      Overrides:
      toString in class Object