Packages

case class DerivedTableRef(context: Context, alias: Option[String], underlying: TableExpr, noalias: Boolean = false) extends TableExpr with Product with Serializable

Table expression derived from the given TableExpr.

Typically used where we need to refer to a table defined in a subquery or common table expression.

Source
SqlMapping.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DerivedTableRef
  2. TableExpr
  3. ColumnOwner
  4. Serializable
  5. Product
  6. Equals
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new DerivedTableRef(context: Context, alias: Option[String], underlying: TableExpr, noalias: Boolean = false)

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. val alias: Option[String]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. def contains(other: ColumnOwner): Boolean
    Definition Classes
    DerivedTableRefColumnOwner
  8. val context: Context
    Definition Classes
    DerivedTableRefColumnOwner
  9. def debugShow: String
    Definition Classes
    ColumnOwner
  10. def directlyOwns(col: SqlColumn): Boolean

    Is the supplied column an immediate component of this TableExpr?

    Is the supplied column an immediate component of this TableExpr?

    Definition Classes
    TableExprColumnOwner
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  13. def findNamedOwner(col: SqlColumn): Option[TableExpr]

    Find the innermost owner of the supplied column within this TableExpr

    Find the innermost owner of the supplied column within this TableExpr

    Definition Classes
    DerivedTableRefTableExprColumnOwner
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. def isRoot: Boolean

    Is this TableRef an anoymous root

    Is this TableRef an anoymous root

    Definition Classes
    DerivedTableRefTableExpr
  17. def isSameOwner(other: ColumnOwner): Boolean
    Definition Classes
    ColumnOwner
  18. def isUnion: Boolean

    Is this TableExpr backed by an SQL union

    Is this TableExpr backed by an SQL union

    This is used to determine whether or not non-nullable columns should be weakened to being nullable when fetched

    Definition Classes
    DerivedTableRefTableExpr
  19. def name: String

    The name of this TableExpr

    The name of this TableExpr

    Definition Classes
    DerivedTableRefTableExpr
  20. def nameOption: Option[String]

    The name, if any, of this ColumnOwner

    The name, if any, of this ColumnOwner

    Definition Classes
    ColumnOwner
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. val noalias: Boolean
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. def owns(col: SqlColumn): Boolean
    Definition Classes
    DerivedTableRefColumnOwner
  26. def productElementNames: Iterator[String]
    Definition Classes
    Product
  27. def subst(from: TableExpr, to: TableExpr): DerivedTableRef

    Yields a copy of this TableExpr with all occurences of from replaced by to

    Yields a copy of this TableExpr with all occurences of from replaced by to

    Definition Classes
    DerivedTableRefTableExpr
  28. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  29. def toDefFragment: Aliased[SqlMappingLike.Fragment]

    Render a defining occurence of this TableExpr

    Render a defining occurence of this TableExpr

    Definition Classes
    DerivedTableRefTableExpr
  30. def toRefFragment: Aliased[SqlMappingLike.Fragment]

    Render a reference to this TableExpr

    Render a reference to this TableExpr

    Definition Classes
    DerivedTableRefTableExpr
  31. val underlying: TableExpr
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from TableExpr

Inherited from ColumnOwner

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped