Packages

case class SqlJoin(parent: TableExpr, child: TableExpr, on: List[(SqlColumn, SqlColumn)], inner: Boolean) extends ColumnOwner with Product with Serializable

Representation of an SQL join

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

Instance Constructors

  1. new SqlJoin(parent: TableExpr, child: TableExpr, on: List[(SqlColumn, SqlColumn)], inner: Boolean)

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. val child: TableExpr
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. def colsOf(other: ColumnOwner): List[SqlColumn]

    Return the columns of table referred to by the parent side of the conditions of this join

  8. def contains(other: ColumnOwner): Boolean
    Definition Classes
    SqlJoinColumnOwner
  9. def context: Context
    Definition Classes
    SqlJoinColumnOwner
  10. def debugShow: String
    Definition Classes
    ColumnOwner
  11. def directlyOwns(col: SqlColumn): Boolean
    Definition Classes
    SqlJoinColumnOwner
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  14. def findNamedOwner(col: SqlColumn): Option[TableExpr]
    Definition Classes
    SqlJoinColumnOwner
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. val inner: Boolean
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def isPredicate: Boolean

    Does this SqlJoin represent a predicate?

  19. def isSameOwner(other: ColumnOwner): Boolean
    Definition Classes
    SqlJoinColumnOwner
  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. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. val on: List[(SqlColumn, SqlColumn)]
  25. def owns(col: SqlColumn): Boolean
    Definition Classes
    SqlJoinColumnOwner
  26. val parent: TableExpr
  27. def productElementNames: Iterator[String]
    Definition Classes
    Product
  28. def subst(from: TableExpr, to: TableExpr): SqlJoin

    Replace references to from with to

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

    Render this SqlJoin as a Fragment

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

Inherited from ColumnOwner

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped