Packages

sealed trait QueryExpressionBuilder[A] extends Serializable

Linear Supertypes
Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. QueryExpressionBuilder
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def avg(implicit ev: Field[A]): Of[A, A]
  2. abstract def avgBy[B](f: (A) => B)(implicit ev: Field[B]): Of[A, B]
  3. abstract def const[B](value: B): Of[A, B]
  4. abstract def count(p: (A) => Boolean): Of[A, Int]
  5. abstract def distinct: Of[A, Set[A]]
  6. abstract def distinctBy[B](f: (A) => B): Of[A, Set[B]]
  7. abstract def flatDistinctBy[B](f: (A) => Iterable[B]): Of[A, Set[B]]
  8. abstract def foldLeft[B](initial: B)(f: (B, A) => B): Of[A, B]
  9. abstract def foldLeftBy[B, R](by: (A) => B)(initial: R)(f: (R, B) => R): Of[A, R]
  10. abstract def lag[B](f: (A) => B): Of[A, Option[B]]
  11. abstract def max(implicit ev: Ordering[A]): Of[A, A]
  12. abstract def maxOf[B](f: (A) => B)(implicit ev: Ordering[B]): Of[A, B]
  13. abstract def min(implicit ev: Ordering[A]): Of[A, A]
  14. abstract def minOf[B](f: (A) => B)(implicit ev: Ordering[B]): Of[A, B]
  15. abstract def product(implicit ev: MultiplicativeMonoid[A]): Of[A, A]
  16. abstract def productBy[B](f: (A) => B)(implicit ev: MultiplicativeMonoid[B]): Of[A, B]
  17. abstract def rank: Of[A, Int]
  18. abstract def reduce(f: (A, A) => A): Of[A, A]
  19. abstract def reduceBy[B](by: (A) => B)(f: (B, B) => B): Of[A, B]
  20. abstract def report[B, C, U1](group1: (A) => B, group2: (A) => C)(merge: (B, C, QueryExpressionBuilder[A]) => Of[A, U1]): ReportPartiallyApplied2[A, B, C, U1]
  21. abstract def report[B, U1](group1: (A) => B)(agg1: (B, QueryExpressionBuilder[A]) => Of[A, U1]): Of[A, List[U1]]
  22. abstract def rowNumber: Of[A, Int]
  23. abstract def std(implicit ev: Fractional[A]): Of[A, A]
  24. abstract def stdBy[B](f: (A) => B)(implicit ev: Fractional[B]): Of[A, B]
  25. abstract def sum(implicit ev: AdditiveMonoid[A]): Of[A, A]
  26. abstract def sumBy[B](f: (A) => B)(implicit ev: AdditiveMonoid[B]): Of[A, B]
  27. abstract def toList: Of[A, List[A]]
  28. abstract def toListBy[B](f: (A) => B): Of[A, List[B]]

Concrete 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. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. def size: Of[A, Int]
  16. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  17. def toString(): String
    Definition Classes
    AnyRef → Any
  18. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  19. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  20. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped