Trait

io.getquill

Query

Related Doc: package getquill

Permalink

sealed trait Query[+T] extends AnyRef

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Query
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def ++[U >: T](q: Query[U]): Query[U]

    Permalink
  4. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def avg[U >: T](implicit n: Numeric[U]): Option[BigDecimal]

    Permalink
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def concatMap[R, U](f: (T) ⇒ U)(implicit ev: (U) ⇒ Iterable[R]): Query[R]

    Permalink
  9. def contains[B >: T](value: B): Boolean

    Permalink
  10. def distinct: Query[T]

    Permalink
  11. def drop(n: Int): Query[T]

    Permalink
  12. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  14. def filter(f: (T) ⇒ Boolean): Query[T]

    Permalink
  15. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. def flatMap[R](f: (T) ⇒ Query[R]): Query[R]

    Permalink
  17. def foreach[A <: Action[_], B](f: (T) ⇒ B)(implicit unquote: (B) ⇒ A): BatchAction[A]

    Permalink

    unquote

    is used for conversion of Quoted[A] to A with unquote

  18. def fullJoin[A >: T, B](q: Query[B]): JoinQuery[A, B, (Option[A], Option[B])]

    Permalink
  19. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  20. def groupBy[R](f: (T) ⇒ R): Query[(R, Query[T])]

    Permalink
  21. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  22. def isEmpty: Boolean

    Permalink
  23. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  24. def join[A >: T](on: (A) ⇒ Boolean): Query[A]

    Permalink
  25. def join[A >: T, B](q: Query[B]): JoinQuery[A, B, (A, B)]

    Permalink
  26. def leftJoin[A >: T](on: (A) ⇒ Boolean): Query[Option[A]]

    Permalink
  27. def leftJoin[A >: T, B](q: Query[B]): JoinQuery[A, B, (A, Option[B])]

    Permalink
  28. def map[R](f: (T) ⇒ R): Query[R]

    Permalink
  29. def max[U >: T]: Option[T]

    Permalink
  30. def min[U >: T]: Option[T]

    Permalink
  31. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  32. def nested: Query[T]

    Permalink
  33. def nonEmpty: Boolean

    Permalink
  34. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  35. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  36. def rightJoin[A >: T](on: (A) ⇒ Boolean): Query[Option[A]]

    Permalink
  37. def rightJoin[A >: T, B](q: Query[B]): JoinQuery[A, B, (Option[A], B)]

    Permalink
  38. def size: Long

    Permalink
  39. def sortBy[R](f: (T) ⇒ R)(implicit ord: Ord[R]): Query[T]

    Permalink
  40. def sum[U >: T](implicit n: Numeric[U]): Option[T]

    Permalink
  41. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  42. def take(n: Int): Query[T]

    Permalink
  43. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  44. def union[U >: T](q: Query[U]): Query[U]

    Permalink
  45. def unionAll[U >: T](q: Query[U]): Query[U]

    Permalink
  46. def value[U >: T]: Option[T]

    Permalink
  47. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. def withFilter(f: (T) ⇒ Boolean): Query[T]

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped