Packages

case class WithRef(context: Context, name: String, withQuery: SqlQuery) extends TableExpr with Product with Serializable

Table expression corresponding to a common table expression

Source
SqlMapping.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WithRef
  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 WithRef(context: Context, name: String, withQuery: SqlQuery)

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 clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. def contains(other: ColumnOwner): Boolean
    Definition Classes
    WithRefColumnOwner
  7. val context: Context
    Definition Classes
    WithRefColumnOwner
  8. def debugShow: String
    Definition Classes
    ColumnOwner
  9. 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
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  12. 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
    WithRefTableExprColumnOwner
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. def isRoot: Boolean

    Is this TableRef an anoymous root

    Is this TableRef an anoymous root

    Definition Classes
    WithRefTableExpr
  16. def isSameOwner(other: ColumnOwner): Boolean
    Definition Classes
    ColumnOwner
  17. 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
    WithRefTableExpr
  18. val name: String

    The name of this TableExpr

    The name of this TableExpr

    Definition Classes
    WithRefTableExpr
  19. def nameOption: Option[String]

    The name, if any, of this ColumnOwner

    The name, if any, of this ColumnOwner

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

    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
    WithRefTableExpr
  26. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  27. def toDefFragment: Aliased[SqlMappingLike.Fragment]

    Render a defining occurence of this TableExpr

    Render a defining occurence of this TableExpr

    Definition Classes
    WithRefTableExpr
  28. def toRefFragment: Aliased[SqlMappingLike.Fragment]

    Render a reference to this TableExpr

    Render a reference to this TableExpr

    Definition Classes
    WithRefTableExpr
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  32. val withQuery: SqlQuery

Inherited from TableExpr

Inherited from ColumnOwner

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped