Packages

case class ScalarUserDefinedFunction extends UserDefinedFunction with Product with Serializable

Holder class for a scalar user-defined function and it's input/output encoder(s).

Linear Supertypes
Serializable, Product, Equals, UserDefinedFunction, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ScalarUserDefinedFunction
  2. Serializable
  3. Product
  4. Equals
  5. UserDefinedFunction
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def apply(exprs: Column*): Column

    Returns an expression that invokes the UDF, using the given arguments.

    Returns an expression that invokes the UDF, using the given arguments.

    Definition Classes
    ScalarUserDefinedFunctionUserDefinedFunction
    Annotations
    @varargs()
    Since

    3.4.0

  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def asNonNullable(): ScalarUserDefinedFunction

    Updates UserDefinedFunction to non-nullable.

    Updates UserDefinedFunction to non-nullable.

    Definition Classes
    ScalarUserDefinedFunctionUserDefinedFunction
    Since

    3.4.0

  7. def asNondeterministic(): ScalarUserDefinedFunction

    Updates UserDefinedFunction to nondeterministic.

    Updates UserDefinedFunction to nondeterministic.

    Definition Classes
    ScalarUserDefinedFunctionUserDefinedFunction
    Since

    3.4.0

  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  9. val deterministic: Boolean

    Returns true iff the UDF is deterministic, i.e.

    Returns true iff the UDF is deterministic, i.e. the UDF produces the same output given the same input.

    Definition Classes
    ScalarUserDefinedFunctionUserDefinedFunction
    Since

    3.4.0

  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  12. val inputTypes: Seq[DataType]
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. val name: Option[String]
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  18. val nullable: Boolean

    Returns true when the UDF can return a nullable value.

    Returns true when the UDF can return a nullable value.

    Definition Classes
    ScalarUserDefinedFunctionUserDefinedFunction
    Since

    3.4.0

  19. val outputType: DataType
  20. def productElementNames: Iterator[String]
    Definition Classes
    Product
  21. val serializedUdfPacket: Array[Byte]
  22. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  23. def toProto: CommonInlineUserDefinedFunction
  24. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. def withName(name: String): ScalarUserDefinedFunction

    Updates UserDefinedFunction with a given name.

    Updates UserDefinedFunction with a given name.

    Definition Classes
    ScalarUserDefinedFunctionUserDefinedFunction
    Since

    3.4.0

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from UserDefinedFunction

Inherited from AnyRef

Inherited from Any

Ungrouped