class Query10[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, R] extends AbstractQuery[R]

Source
Query1.scala
Linear Supertypes
AbstractQuery[R], Query[R], Queryable[R], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Query10
  2. AbstractQuery
  3. Query
  4. Queryable
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Query10(t1: Queryable[T1], t2: Queryable[T2], t3: Queryable[T3], t4: Queryable[T4], t5: Queryable[T5], t6: Queryable[T6], t7: Queryable[T7], t8: Queryable[T8], t9: Queryable[T9], t10: Queryable[T10], f: (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10) => QueryYield[R], isRoot: Boolean, unions: List[(String, Query[R])])

Type Members

  1. class SubQueryable[U] extends AnyRef
    Attributes
    protected
    Definition Classes
    AbstractQuery

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 ast: QueryExpressionNode[R]
    Definition Classes
    Query10AbstractQueryQuery
  6. def buildAst(qy: QueryYield[R], subQueryables: SubQueryable[_]*): QueryExpressionNode[R]
    Attributes
    protected
    Definition Classes
    AbstractQuery
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. def copy(asRoot: Boolean, newUnions: List[(String, Query[R])]): AbstractQuery[R]
    Definition Classes
    AbstractQueryQuery
  9. def copyUnions(u: List[(String, Query[R])]): List[(String, Query[R])]
    Attributes
    protected
    Definition Classes
    AbstractQuery
  10. def createCopy(root: Boolean, newUnions: List[(String, Query[R])]): Query10[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, R]
    Definition Classes
    Query10AbstractQuery
  11. def createSubQueryable[U](q: Queryable[U]): SubQueryable[U]
    Attributes
    protected
    Definition Classes
    AbstractQuery
  12. val definitionSite: Option[StackTraceElement]

    Builds the AST tree of the this Query, *some state mutation of the AST nodes occurs during AST construction, for example, the parent child relationship is set by this method, unique IDs of node that needs them for example.

    Builds the AST tree of the this Query, *some state mutation of the AST nodes occurs during AST construction, for example, the parent child relationship is set by this method, unique IDs of node that needs them for example.

    After this call, the query (and it's AST) becomes immutable by virtue of the unaccessibility of it's public methods

    Definition Classes
    AbstractQuery
  13. def distinct: AbstractQuery[R]
    Definition Classes
    AbstractQueryQuery
  14. def dumpAst: String
    Definition Classes
    AbstractQueryQuery
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  17. def except(q: Query[R]): Query[R]
    Definition Classes
    AbstractQueryQuery
  18. def exceptAll(q: Query[R]): Query[R]
    Definition Classes
    AbstractQueryQuery
  19. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  20. def forUpdate: AbstractQuery[R]
    Definition Classes
    AbstractQueryQuery
  21. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. def give(rsm: ResultSetMapper, rs: ResultSet): R
    Definition Classes
    AbstractQueryQueryable
  23. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  24. def headOption: Option[R]
    Definition Classes
    Query
  25. def intersect(q: Query[R]): Query[R]
    Definition Classes
    AbstractQueryQuery
  26. def intersectAll(q: Query[R]): Query[R]
    Definition Classes
    AbstractQueryQuery
  27. def invokeYield(rsm: ResultSetMapper, rs: ResultSet): R
    Definition Classes
    Query10Query
  28. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  29. val isRoot: Boolean
    Definition Classes
    AbstractQuery
  30. def iterator: Iterator[R] with Closeable
    Definition Classes
    AbstractQueryQuery
  31. val name: String
    Definition Classes
    AbstractQueryQueryable
  32. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  33. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  34. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  35. def page(offset: Int, pageLength: Int): Query[R]
    Definition Classes
    AbstractQueryQuery
  36. val resultSetMapper: ResultSetMapper
    Definition Classes
    AbstractQuery
  37. def single: R

    Returns the first row of the query.

    Returns the first row of the query. An exception will be thrown if the query returns no row or more than one row.

    Definition Classes
    Query
  38. def singleOption: Option[R]

    Returns Some(singleRow), None if there are none, throws an exception if the query returns more than one row.

    Returns Some(singleRow), None if there are none, throws an exception if the query returns more than one row.

    Definition Classes
    Query
  39. val sq1: SubQueryable[T1]
  40. val sq10: SubQueryable[T10]
  41. val sq2: SubQueryable[T2]
  42. val sq3: SubQueryable[T3]
  43. val sq4: SubQueryable[T4]
  44. val sq5: SubQueryable[T5]
  45. val sq6: SubQueryable[T6]
  46. val sq7: SubQueryable[T7]
  47. val sq8: SubQueryable[T8]
  48. val sq9: SubQueryable[T9]
  49. def statement: String

    returns a 'pretty' statement, i.e.

    returns a 'pretty' statement, i.e. values are printed instead of '?'

    Definition Classes
    AbstractQueryQuery
  50. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  51. def toString(): String
    Definition Classes
    AbstractQuery → AnyRef → Any
  52. def union(q: Query[R]): Query[R]
    Definition Classes
    AbstractQueryQuery
  53. def unionAll(q: Query[R]): Query[R]
    Definition Classes
    AbstractQueryQuery
  54. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  55. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  56. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  57. def where(whereClauseFunctor: (R) => LogicalBoolean)(implicit dsl: QueryDsl): Query[R]
    Definition Classes
    Queryable

Inherited from AbstractQuery[R]

Inherited from Query[R]

Inherited from Queryable[R]

Inherited from AnyRef

Inherited from Any

Ungrouped