scala.slick.lifted

ForeignKeyQuery

class ForeignKeyQuery[E <: AbstractTable[_], U] extends WrappingQuery[E, U] with Constraint

Source
Constraint.scala
Linear Supertypes
Constraint, WrappingQuery[E, U], Query[E, U], Rep[Seq[U]], AnyRef, Any
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ForeignKeyQuery
  2. Constraint
  3. WrappingQuery
  4. Query
  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 ForeignKeyQuery(nodeDelegate: Node, base: ShapedValue[_ <: E, U], fks: IndexedSeq[ForeignKey], targetBaseQuery: Query[E, U], generator: AnonSymbol, aliasedValue: E)

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: ForeignKeyQuery[E, U]): ForeignKeyQuery[E, U]

    Combine the constraints of this ForeignKeyQuery with another one with the same target table, leading to a single instance of the target table which satisfies the constraints of both.

  5. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from ForeignKeyQuery[E, U] to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  6. def ++[O >: E, R](other: Query[O, U]): WrappingQuery[O, U]

    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
  7. def ->[B](y: B): (ForeignKeyQuery[E, U], B)

    Implicit information
    This member is added by an implicit conversion from ForeignKeyQuery[E, U] to ArrowAssoc[ForeignKeyQuery[E, U]] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  8. final def ==(arg0: AnyRef): Boolean

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

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

    Definition Classes
    Any
  11. def clone(): AnyRef

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

    The number of distinct elements of the query.

    The number of distinct elements of the query.

    Definition Classes
    Query
  13. def drop(num: Int): Query[E, U]

    Select all elements except the first num ones.

    Select all elements except the first num ones.

    Definition Classes
    Query
  14. def encodeRef(path: List[ast.Symbol]): Query[E, U]

    Encode a reference into this Rep

    Encode a reference into this Rep

    Definition Classes
    QueryRep
  15. def ensuring(cond: (ForeignKeyQuery[E, U]) ⇒ Boolean, msg: ⇒ Any): ForeignKeyQuery[E, U]

    Implicit information
    This member is added by an implicit conversion from ForeignKeyQuery[E, U] to Ensuring[ForeignKeyQuery[E, U]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: (ForeignKeyQuery[E, U]) ⇒ Boolean): ForeignKeyQuery[E, U]

    Implicit information
    This member is added by an implicit conversion from ForeignKeyQuery[E, U] to Ensuring[ForeignKeyQuery[E, U]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean, msg: ⇒ Any): ForeignKeyQuery[E, U]

    Implicit information
    This member is added by an implicit conversion from ForeignKeyQuery[E, U] to Ensuring[ForeignKeyQuery[E, U]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: Boolean): ForeignKeyQuery[E, U]

    Implicit information
    This member is added by an implicit conversion from ForeignKeyQuery[E, U] to Ensuring[ForeignKeyQuery[E, U]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. final def eq(arg0: AnyRef): Boolean

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

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

    Test whether this query is non-empty.

    Test whether this query is non-empty.

    Definition Classes
    Query
  22. def filter[T](f: (E) ⇒ T)(implicit wt: CanBeQueryCondition[T]): Query[E, U]

    Definition Classes
    Query
  23. def filterNot[T](f: (E) ⇒ T)(implicit wt: CanBeQueryCondition[T]): Query[E, U]

    Definition Classes
    Query
  24. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  25. val fks: IndexedSeq[ForeignKey]

  26. def flatMap[F, T](f: (E) ⇒ Query[F, T]): Query[F, T]

    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 ForeignKeyQuery[E, U] 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: (E) ⇒ K)(implicit kshape: Shape[_ <: Flat, K, T, G], vshape: Shape[_ <: Flat, E, _, P]): Query[(G, Query[P, U]), (T, Query[P, U])]

    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](q2: Query[E2, U2]): BaseJoinQuery[E, E2, U, U2]

    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](q2: Query[E2, U2], jt: JoinType = JoinType.Inner): BaseJoinQuery[E, E2, U, U2]

    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](q2: Query[E2, U2]): BaseJoinQuery[E, E2, U, U2]

    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 of the query.

    The total number of elements of the query.

    Definition Classes
    Query
  36. def map[F, G, T](f: (E) ⇒ F)(implicit shape: Shape[_ <: Flat, F, T, G]): Query[G, T]

    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 outerJoin[E2, U2](q2: Query[E2, U2]): BaseJoinQuery[E, E2, U, U2]

    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
  41. def pack[R](implicit packing: Shape[_ <: Flat, E, _, R]): Query[R, U]

    Definition Classes
    Query
  42. final lazy val packed: Node

    Definition Classes
    Query
  43. def rightJoin[E2, U2](q2: Query[E2, U2]): BaseJoinQuery[E, E2, U, U2]

    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
  44. def sortBy[T](f: (E) ⇒ T)(implicit arg0: (T) ⇒ Ordered): Query[E, U]

    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
  45. def sorted(implicit ev: (E) ⇒ Ordered): Query[E, U]

    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
  46. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  47. def take(num: Int): Query[E, U]

    Select the first num elements.

    Select the first num elements.

    Definition Classes
    Query
  48. val toNode: Node

    Get the Node for this Rep

    Get the Node for this Rep

    Definition Classes
    WrappingQueryRep
  49. def toString(): String

    Definition Classes
    AnyRef → Any
  50. def union[O >: E, R](other: Query[O, U]): WrappingQuery[O, U]

    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
  51. def unionAll[O >: E, R](other: Query[O, U]): WrappingQuery[O, U]

    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
  52. lazy val unpackable: ShapedValue[_ <: E, U]

    Definition Classes
    WrappingQueryQuery
  53. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  56. def where[T <: Column[_]](f: (E) ⇒ T)(implicit arg0: CanBeQueryCondition[T]): Query[E, U]

    Select all elements of this query which satisfy a predicate.

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

    Definition Classes
    Query
  57. def withFilter[T](f: (E) ⇒ T)(implicit arg0: CanBeQueryCondition[T]): Query[E, U]

    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
  58. def zip[E2, U2](q2: Query[E2, U2]): Query[(E, E2), (U, U2)]

    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
  59. def zipWith[E2, U2, F, G, T](q2: Query[E2, U2], f: (E, E2) ⇒ F)(implicit shape: Shape[_ <: Flat, F, T, G]): Query[G, T]

    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
  60. def zipWithIndex: BaseJoinQuery[E, Column[Long], U, Long]

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

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

    Definition Classes
    Query
  61. def [B](y: B): (ForeignKeyQuery[E, U], B)

    Implicit information
    This member is added by an implicit conversion from ForeignKeyQuery[E, U] to ArrowAssoc[ForeignKeyQuery[E, U]] 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 ForeignKeyQuery[E, U] 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:
    (foreignKeyQuery: StringAdd).self
    Definition Classes
    StringAdd
  2. val self: Any

    Implicit information
    This member is added by an implicit conversion from ForeignKeyQuery[E, U] 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:
    (foreignKeyQuery: StringFormat).self
    Definition Classes
    StringFormat

Deprecated Value Members

  1. def >>[F, T](q: Query[F, T]): Query[F, T]

    Definition Classes
    Query
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0) Use flatMap instead

  2. def x: ForeignKeyQuery[E, U]

    Implicit information
    This member is added by an implicit conversion from ForeignKeyQuery[E, U] to ArrowAssoc[ForeignKeyQuery[E, U]] 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:
    (foreignKeyQuery: ArrowAssoc[ForeignKeyQuery[E, U]]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  3. def x: ForeignKeyQuery[E, U]

    Implicit information
    This member is added by an implicit conversion from ForeignKeyQuery[E, U] to Ensuring[ForeignKeyQuery[E, U]] 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:
    (foreignKeyQuery: Ensuring[ForeignKeyQuery[E, U]]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from Constraint

Inherited from WrappingQuery[E, U]

Inherited from Query[E, U]

Inherited from Rep[Seq[U]]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from ForeignKeyQuery[E, U] to StringAdd

Inherited by implicit conversion any2stringfmt from ForeignKeyQuery[E, U] to StringFormat

Inherited by implicit conversion any2ArrowAssoc from ForeignKeyQuery[E, U] to ArrowAssoc[ForeignKeyQuery[E, U]]

Inherited by implicit conversion any2Ensuring from ForeignKeyQuery[E, U] to Ensuring[ForeignKeyQuery[E, U]]

Ungrouped