scala.slick.lifted

BaseJoinQuery

final class BaseJoinQuery[+E1, +E2, U1, U2, C[_]] extends WrappingQuery[(E1, E2), (U1, U2), C]

Source
Query.scala
Linear Supertypes
WrappingQuery[(E1, E2), (U1, U2), C], Query[(E1, E2), (U1, U2), C], QueryBase[C[(U1, U2)]], Rep[C[(U1, U2)]], AnyRef, Any
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. BaseJoinQuery
  2. WrappingQuery
  3. Query
  4. QueryBase
  5. Rep
  6. AnyRef
  7. Any
Implicitly
  1. by any2stringadd
  2. by any2stringfmt
  3. by any2ArrowAssoc
  4. by any2Ensuring
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BaseJoinQuery(leftGen: ast.Symbol, rightGen: ast.Symbol, left: Node, right: Node, jt: JoinType, base: ShapedValue[_ <: (E1, E2), (U1, U2)])

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from BaseJoinQuery[E1, E2, U1, U2, C] to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ++[O >: (E1, E2), R, D[_]](other: Query[O, (U1, U2), D]): Query[O, (U1, U2), C]

    Return a new query containing the elements from both operands.

    Return a new query containing the elements from both operands. Duplicate elements are preserved.

    Definition Classes
    Query
  6. def ->[B](y: B): (BaseJoinQuery[E1, E2, U1, U2, C], B)

    Implicit information
    This member is added by an implicit conversion from BaseJoinQuery[E1, E2, U1, U2, C] to ArrowAssoc[BaseJoinQuery[E1, E2, U1, U2, C]] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  7. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  8. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def countDistinct: Column[Int]

    The number of distinct elements of the query.

    The number of distinct elements of the query.

    Definition Classes
    Query
  12. def drop(num: Int): Query[(E1, E2), (U1, U2), C]

    Select all elements except the first num ones.

    Select all elements except the first num ones.

    Definition Classes
    Query
  13. def drop(num: Long): Query[(E1, E2), (U1, U2), C]

    Select all elements except the first num ones.

    Select all elements except the first num ones.

    Definition Classes
    Query
  14. def drop(num: ConstColumn[Long]): Query[(E1, E2), (U1, U2), C]

    Select all elements except the first num ones.

    Select all elements except the first num ones.

    Definition Classes
    Query
  15. def encodeRef(path: List[ast.Symbol]): Query[(E1, E2), (U1, U2), C]

    Encode a reference into this Rep

    Encode a reference into this Rep

    Definition Classes
    QueryRep
  16. def ensuring(cond: (BaseJoinQuery[E1, E2, U1, U2, C]) ⇒ Boolean, msg: ⇒ Any): BaseJoinQuery[E1, E2, U1, U2, C]

    Implicit information
    This member is added by an implicit conversion from BaseJoinQuery[E1, E2, U1, U2, C] to Ensuring[BaseJoinQuery[E1, E2, U1, U2, C]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: (BaseJoinQuery[E1, E2, U1, U2, C]) ⇒ Boolean): BaseJoinQuery[E1, E2, U1, U2, C]

    Implicit information
    This member is added by an implicit conversion from BaseJoinQuery[E1, E2, U1, U2, C] to Ensuring[BaseJoinQuery[E1, E2, U1, U2, C]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: Boolean, msg: ⇒ Any): BaseJoinQuery[E1, E2, U1, U2, C]

    Implicit information
    This member is added by an implicit conversion from BaseJoinQuery[E1, E2, U1, U2, C] to Ensuring[BaseJoinQuery[E1, E2, U1, U2, C]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. def ensuring(cond: Boolean): BaseJoinQuery[E1, E2, U1, U2, C]

    Implicit information
    This member is added by an implicit conversion from BaseJoinQuery[E1, E2, U1, U2, C] to Ensuring[BaseJoinQuery[E1, E2, U1, U2, C]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  20. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  21. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  22. def exists: Column[Boolean]

    Test whether this query is non-empty.

    Test whether this query is non-empty.

    Definition Classes
    Query
  23. def filter[T <: Column[_]](f: ((E1, E2)) ⇒ T)(implicit wt: CanBeQueryCondition[T]): Query[(E1, E2), (U1, U2), C]

    Select all elements of this query which satisfy a predicate.

    Select all elements of this query which satisfy a predicate. Unlike withFilter, this method only allows Column-valued predicates, so it guards against the accidental use use plain Booleans.

    Definition Classes
    Query
  24. def filterNot[T <: Column[_]](f: ((E1, E2)) ⇒ T)(implicit wt: CanBeQueryCondition[T]): Query[(E1, E2), (U1, U2), C]

    Definition Classes
    Query
  25. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  26. def flatMap[F, T, D[_]](f: ((E1, E2)) ⇒ Query[F, T, D]): Query[F, T, C]

    Build a new query by applying a function to all elements of this query and using the elements of the resulting queries.

    Build a new query by applying a function to all elements of this query and using the elements of the resulting queries. This corresponds to an implicit inner join in SQL.

    Definition Classes
    Query
  27. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from BaseJoinQuery[E1, E2, U1, U2, C] to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  28. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  29. def groupBy[K, T, G, P](f: ((E1, E2)) ⇒ K)(implicit kshape: Shape[_ <: FlatShapeLevel, K, T, G], vshape: Shape[_ <: FlatShapeLevel, (E1, E2), _, P]): Query[(G, Query[P, (U1, U2), Seq]), (T, Query[P, (U1, U2), Seq]), C]

    Partition this query into a query of pairs of a key and a nested query containing the elements for the key, according to some discriminator function.

    Partition this query into a query of pairs of a key and a nested query containing the elements for the key, according to some discriminator function.

    Definition Classes
    Query
  30. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  31. def innerJoin[E2, U2, D[_]](q2: Query[E2, U2, D]): BaseJoinQuery[(E1, E2), E2, (U1, U2), U2, C]

    Join two collections with an inner join.

    Join two collections with an inner join. An optional join predicate can be specified later by calling on.

    Definition Classes
    Query
  32. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  33. def join[E2, U2, D[_]](q2: Query[E2, U2, D], jt: JoinType = JoinType.Inner): BaseJoinQuery[(E1, E2), E2, (U1, U2), U2, C]

    Join two collections.

    Join two collections. An optional join predicate can be specified later by calling on.

    Definition Classes
    Query
  34. def leftJoin[E2, U2, D[_]](q2: Query[E2, U2, D]): BaseJoinQuery[(E1, E2), E2, (U1, U2), U2, C]

    Join two collections with a left outer join.

    Join two collections with a left outer join. An optional join predicate can be specified later by calling on.

    Definition Classes
    Query
  35. def length: Column[Int]

    The total number of elements (i.

    The total number of elements (i.e. rows).

    Definition Classes
    Query
  36. def map[F, G, T](f: ((E1, E2)) ⇒ F)(implicit shape: Shape[_ <: FlatShapeLevel, F, T, G]): Query[G, T, C]

    Build a new query by applying a function to all elements of this query.

    Build a new query by applying a function to all elements of this query.

    Definition Classes
    Query
  37. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  38. final def notify(): Unit

    Definition Classes
    AnyRef
  39. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  40. def on[T <: Column[_]](pred: (E1, E2) ⇒ T)(implicit wt: CanBeQueryCondition[T]): Query[(E1, E2), (U1, U2), C]

    Add a join condition to a join operation.

  41. def outerJoin[E2, U2, D[_]](q2: Query[E2, U2, D]): BaseJoinQuery[(E1, E2), E2, (U1, U2), U2, C]

    Join two collections with a full outer join.

    Join two collections with a full outer join. An optional join predicate can be specified later by calling on.

    Definition Classes
    Query
  42. def pack[R](implicit packing: Shape[_ <: FlatShapeLevel, (E1, E2), _, R]): Query[R, (U1, U2), C]

    Definition Classes
    Query
  43. final lazy val packed: Node

    Definition Classes
    Query
  44. def rightJoin[E2, U2, D[_]](q2: Query[E2, U2, D]): BaseJoinQuery[(E1, E2), E2, (U1, U2), U2, C]

    Join two collections with a right outer join.

    Join two collections with a right outer join. An optional join predicate can be specified later by calling on.

    Definition Classes
    Query
  45. val shaped: ShapedValue[_ <: (E1, E2), (U1, U2)]

    Definition Classes
    WrappingQueryQuery
  46. def size: Column[Int]

    The total number of elements (i.

    The total number of elements (i.e. rows).

    Definition Classes
    Query
  47. def sortBy[T](f: ((E1, E2)) ⇒ T)(implicit arg0: (T) ⇒ Ordered): Query[(E1, E2), (U1, U2), C]

    Sort this query according to a function which extracts the ordering criteria from the query's elements.

    Sort this query according to a function which extracts the ordering criteria from the query's elements.

    Definition Classes
    Query
  48. def sorted(implicit ev: ((E1, E2)) ⇒ Ordered): Query[(E1, E2), (U1, U2), C]

    Sort this query according to a the ordering of its elements.

    Sort this query according to a the ordering of its elements.

    Definition Classes
    Query
  49. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  50. def take(num: Int): Query[(E1, E2), (U1, U2), C]

    Select the first num elements.

    Select the first num elements.

    Definition Classes
    Query
  51. def take(num: Long): Query[(E1, E2), (U1, U2), C]

    Select the first num elements.

    Select the first num elements.

    Definition Classes
    Query
  52. def take(num: ConstColumn[Long]): Query[(E1, E2), (U1, U2), C]

    Select the first num elements.

    Select the first num elements.

    Definition Classes
    Query
  53. def to[D[_]](implicit ctc: TypedCollectionTypeConstructor[D]): Query[(E1, E2), (U1, U2), D]

    Definition Classes
    Query
  54. val toNode: Node

    Get the Node for this Rep

    Get the Node for this Rep

    Definition Classes
    WrappingQueryRep
  55. def toString(): String

    Definition Classes
    AnyRef → Any
  56. def union[O >: (E1, E2), R, D[_]](other: Query[O, (U1, U2), D]): Query[O, (U1, U2), C]

    Return a new query containing the elements from both operands.

    Return a new query containing the elements from both operands. Duplicate elements are eliminated from the result.

    Definition Classes
    Query
  57. def unionAll[O >: (E1, E2), R, D[_]](other: Query[O, (U1, U2), D]): Query[O, (U1, U2), C]

    Return a new query containing the elements from both operands.

    Return a new query containing the elements from both operands. Duplicate elements are preserved.

    Definition Classes
    Query
  58. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  59. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  60. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  61. def withFilter[T](f: ((E1, E2)) ⇒ T)(implicit arg0: CanBeQueryCondition[T]): Query[(E1, E2), (U1, U2), C]

    Select all elements of this query which satisfy a predicate.

    Select all elements of this query which satisfy a predicate. This method is used when desugaring for-comprehensions over queries. There is no reason to call it directly because it is the same as filter.

    Definition Classes
    Query
  62. def zip[E2, U2, D[_]](q2: Query[E2, U2, D]): Query[((E1, E2), E2), ((U1, U2), U2), C]

    Return a query formed from this query and another query by combining corresponding elements in pairs.

    Return a query formed from this query and another query by combining corresponding elements in pairs.

    Definition Classes
    Query
  63. def zipWith[E2, U2, F, G, T, D[_]](q2: Query[E2, U2, D], f: ((E1, E2), E2) ⇒ F)(implicit shape: Shape[_ <: FlatShapeLevel, F, T, G]): Query[G, T, C]

    Return a query formed from this query and another query by combining corresponding elements with the specified function.

    Return a query formed from this query and another query by combining corresponding elements with the specified function.

    Definition Classes
    Query
  64. def zipWithIndex: BaseJoinQuery[(E1, E2), Column[Long], (U1, U2), Long, C]

    Zip this query with its indices (starting at 0).

    Zip this query with its indices (starting at 0).

    Definition Classes
    Query
  65. def [B](y: B): (BaseJoinQuery[E1, E2, U1, U2, C], B)

    Implicit information
    This member is added by an implicit conversion from BaseJoinQuery[E1, E2, U1, U2, C] to ArrowAssoc[BaseJoinQuery[E1, E2, U1, U2, C]] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. val self: Any

    Implicit information
    This member is added by an implicit conversion from BaseJoinQuery[E1, E2, U1, U2, C] to StringAdd performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (baseJoinQuery: StringAdd).self
    Definition Classes
    StringAdd
  2. val self: Any

    Implicit information
    This member is added by an implicit conversion from BaseJoinQuery[E1, E2, U1, U2, C] to StringFormat performed by method any2stringfmt in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (baseJoinQuery: StringFormat).self
    Definition Classes
    StringFormat

Deprecated Value Members

  1. def where[T <: Column[_]](f: ((E1, E2)) ⇒ T)(implicit arg0: CanBeQueryCondition[T]): Query[(E1, E2), (U1, U2), C]

    Select all elements of this query which satisfy a predicate.

    Select all elements of this query which satisfy a predicate. Unlike withilter, this method only allows Column-valued predicates, so it guards against the accidental use use plain Booleans.

    Definition Classes
    Query
    Annotations
    @deprecated
    Deprecated

    (Since version 2.1) Use filter instead of where

  2. def x: BaseJoinQuery[E1, E2, U1, U2, C]

    Implicit information
    This member is added by an implicit conversion from BaseJoinQuery[E1, E2, U1, U2, C] to ArrowAssoc[BaseJoinQuery[E1, E2, U1, U2, C]] performed by method any2ArrowAssoc in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (baseJoinQuery: ArrowAssoc[BaseJoinQuery[E1, E2, U1, U2, C]]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  3. def x: BaseJoinQuery[E1, E2, U1, U2, C]

    Implicit information
    This member is added by an implicit conversion from BaseJoinQuery[E1, E2, U1, U2, C] to Ensuring[BaseJoinQuery[E1, E2, U1, U2, C]] performed by method any2Ensuring in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (baseJoinQuery: Ensuring[BaseJoinQuery[E1, E2, U1, U2, C]]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from WrappingQuery[(E1, E2), (U1, U2), C]

Inherited from Query[(E1, E2), (U1, U2), C]

Inherited from QueryBase[C[(U1, U2)]]

Inherited from Rep[C[(U1, U2)]]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from BaseJoinQuery[E1, E2, U1, U2, C] to StringAdd

Inherited by implicit conversion any2stringfmt from BaseJoinQuery[E1, E2, U1, U2, C] to StringFormat

Inherited by implicit conversion any2ArrowAssoc from BaseJoinQuery[E1, E2, U1, U2, C] to ArrowAssoc[BaseJoinQuery[E1, E2, U1, U2, C]]

Inherited by implicit conversion any2Ensuring from BaseJoinQuery[E1, E2, U1, U2, C] to Ensuring[BaseJoinQuery[E1, E2, U1, U2, C]]

Ungrouped