Packages

trait NamedReference extends Expression

Represents a field or column reference in the public logical expression API.

Annotations
@Evolving()
Source
NamedReference.java
Since

3.0.0

Linear Supertypes
Expression, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NamedReference
  2. Expression
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def fieldNames(): Array[String]

    Returns the referenced field name as an array of String parts.

    Returns the referenced field name as an array of String parts.

    Each string in the returned array represents a field name.

Concrete Value Members

  1. def children(): Array[Expression]

    Returns an array of the children of this node.

    Returns an array of the children of this node. Children should not change.

    Definition Classes
    NamedReferenceExpression
    Annotations
    @Override()
  2. def describe(): String

    Format the expression as a human readable SQL-like string.

    Format the expression as a human readable SQL-like string.

    Definition Classes
    Expression
  3. def references(): Array[NamedReference]

    List of fields or columns that are referenced by this expression.

    List of fields or columns that are referenced by this expression.

    Definition Classes
    NamedReferenceExpression
    Annotations
    @Override()