sealed trait Expression extends TreeNode[Expression] with Product

Linear Supertypes
Product, Equals, TreeNode[Expression], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Expression
  2. Product
  3. Equals
  4. TreeNode
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def canEqual(that: Any): Boolean
    Definition Classes
    Equals
  2. abstract def children: Seq[Expression]
    Definition Classes
    TreeNode
  3. abstract def nodeLocation: Option[NodeLocation]

    returns

    the code location in the SQL text if available

    Definition Classes
    TreeNode
  4. abstract def productArity: Int
    Definition Classes
    Product
  5. abstract def productElement(n: Int): Any
    Definition Classes
    Product

Concrete 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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def attributeName: String

    Column name without qualifier

  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  7. def collectExpressions(cond: PartialFunction[Expression, Boolean]): List[Expression]
  8. def collectSubExpressions: List[Expression]
  9. def copyInstance(newArgs: Seq[AnyRef]): Expression.this.type
    Attributes
    protected
  10. def dataType: DataType
  11. def dataTypeName: String
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. def productElementName(n: Int): String
    Definition Classes
    Product
  21. def productElementNames: Iterator[String]
    Definition Classes
    Product
  22. def productIterator: Iterator[Any]
    Definition Classes
    Product
  23. def productPrefix: String
    Definition Classes
    Product
  24. lazy val resolved: Boolean
  25. def resolvedChildren: Boolean
  26. def resolvedInputs: Boolean
  27. def sqlExpr: String
  28. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  29. def toString(): String
    Definition Classes
    AnyRef → Any
  30. def transformExpression(rule: PartialFunction[Expression, Expression]): Expression

    Recursively transform the expression in breadth-first order

  31. def transformPlan(rule: PartialFunction[LogicalPlan, LogicalPlan]): Expression
  32. def transformUpExpression(rule: PartialFunction[Expression, Expression]): Expression

    Recursively transform the expression in depth-first order

  33. def traverseExpressions[U](rule: PartialFunction[Expression, U]): Unit
  34. def traversePlan[U](rule: PartialFunction[LogicalPlan, U]): Unit
  35. def traversePlanOnce[U](rule: PartialFunction[LogicalPlan, U]): Unit
  36. def typeDescription: String

    * Returns "(name):(type)" of this attribute

  37. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  38. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  39. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

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

Inherited from Product

Inherited from Equals

Inherited from TreeNode[Expression]

Inherited from AnyRef

Inherited from Any

Ungrouped