Packages

sealed abstract class Query[-In, +Out] extends Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Query
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def explain: QueryExplain

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ++[In2 <: In, Out0 >: Out](that: Query[In2, Out0])(implicit arg0: scalaql.Tag[In2], arg1: scalaql.Tag[Out0]): Query[In2, Out0]
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. final def >>>[Out0 >: Out, Out2](that: Query[From[Out0], Out2])(implicit arg0: scalaql.Tag[Out0], arg1: scalaql.Tag[Out2]): Query[In, Out2]
  6. def accumulate[S, B](initialState: S)(modifyState: (S, Out) => S)(getResults: (S) => Iterable[B])(implicit arg0: scalaql.Tag[S], arg1: scalaql.Tag[B]): Query[In, B]
  7. def andThen[Out0 >: Out, Out2](that: Query[From[Out0], Out2])(implicit arg0: scalaql.Tag[Out0], arg1: scalaql.Tag[Out2]): Query[In, Out2]
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  10. def collect[B](pf: PartialFunction[Out, B])(implicit arg0: scalaql.Tag[B]): Query[In, B]
  11. def deduplicate: Query[In, Out]
  12. def deduplicateBy[K](f: (Out) => K)(implicit arg0: scalaql.Tag[K]): Query[In, Out]
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  15. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  16. def flatMap[In2 <: In, B](f: (Out) => Query[In2, B])(implicit arg0: scalaql.Tag[In2], arg1: scalaql.Tag[B]): Query[In2, B]
  17. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def groupBy[A, B, C](f: scalaql.GroupBy[Out, A], g: scalaql.GroupBy[Out, B], h: scalaql.GroupBy[Out, C])(implicit arg0: scalaql.Tag[A], arg1: scalaql.Tag[B], arg2: scalaql.Tag[C]): GroupByQuery[In, Out, (A, B, C)]
  19. def groupBy[A, B](f: scalaql.GroupBy[Out, A], g: scalaql.GroupBy[Out, B])(implicit arg0: scalaql.Tag[A], arg1: scalaql.Tag[B]): GroupByQuery[In, Out, (A, B)]
  20. def groupBy[A](f: scalaql.GroupBy[Out, A])(implicit arg0: scalaql.Tag[A]): GroupByQuery[In, Out, A]
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. def map[B](f: (Out) => B)(implicit arg0: scalaql.Tag[B]): Query[In, B]
  24. def mapConcat[B](f: (Out) => Iterable[B])(implicit arg0: scalaql.Tag[B]): Query[In, B]
  25. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  26. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  28. def statefulMap[S, B](initialState: S)(process: (S, Out) => (S, B))(implicit arg0: scalaql.Tag[S], arg1: scalaql.Tag[B]): Query[In, B]
  29. def statefulMapConcat[S, B](initialState: S)(process: (S, Out) => (S, Iterable[B]))(implicit arg0: scalaql.Tag[S], arg1: scalaql.Tag[B]): Query[In, B]
  30. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  31. final def toString(): String
    Definition Classes
    Query → AnyRef → Any
  32. def union[In2 <: In, Out0 >: Out](that: Query[In2, Out0])(implicit arg0: scalaql.Tag[In2], arg1: scalaql.Tag[Out0]): Query[In2, Out0]
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  36. def where(p: scalaql.Predicate[Out]): Query[In, Out]
  37. def whereNot(p: scalaql.Predicate[Out]): Query[In, Out]
  38. def whereSubQuery[In2 <: In](p: (Out) => QueryResult[In2, Boolean])(implicit arg0: scalaql.Tag[In2]): Query[In2, Out]
  39. def withFilter(p: scalaql.Predicate[Out]): Query[In, Out]

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped