final class SortByQuery[In, Out, By] extends Query[In, Out]
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- SortByQuery
- Query
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new SortByQuery(source: Query[In, Out], sortBy: scalaql.SortBy[Out, By])(implicit order: Order[By])
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- def ++[In2 <: In, Out0 >: Out](that: Query[In2, Out0]): Query[In2, Out0]
- Definition Classes
- Query
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def >>>[Out0 >: Out, Out2](that: Query[From[Out0], Out2])(implicit arg0: Tag[Out0]): Query[In, Out2]
- Definition Classes
- Query
- def andThen[Out0 >: Out, Out2](that: Query[From[Out0], Out2])(implicit arg0: Tag[Out0]): Query[In, Out2]
- Definition Classes
- Query
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def collect[B](pf: PartialFunction[Out, B]): Query[In, B]
- Definition Classes
- Query
- def crossJoin[In2 <: In, Out2](that: Query[In2, Out2]): InnerJoinPartiallyApplied[In2, Out, Out2]
- Definition Classes
- Query
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def flatMap[In2 <: In, B](f: (Out) => Query[In2, B]): Query[In2, B]
- Definition Classes
- Query
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def groupBy[A, B, C](f: scalaql.GroupBy[Out, A], g: scalaql.GroupBy[Out, B], h: scalaql.GroupBy[Out, C]): GroupByQuery[In, Out, (A, B, C)]
- Definition Classes
- Query
- def groupBy[A, B](f: scalaql.GroupBy[Out, A], g: scalaql.GroupBy[Out, B]): GroupByQuery[In, Out, (A, B)]
- Definition Classes
- Query
- def groupBy[A](f: scalaql.GroupBy[Out, A]): GroupByQuery[In, Out, A]
- Definition Classes
- Query
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def join[In2 <: In, Out2](that: Query[In2, Out2]): InnerJoinPartiallyApplied[In2, Out, Out2]
- Definition Classes
- Query
- def leftJoin[In2 <: In, Out2](that: Query[In2, Out2]): LeftJoinPartiallyApplied[In2, Out, Out2]
- Definition Classes
- Query
- def map[B](f: (Out) => B): Query[In, B]
- Definition Classes
- Query
- def mapConcat[B](f: (Out) => Iterable[B]): Query[In, B]
- Definition Classes
- Query
- def mapFilter[B](f: (Out) => Option[B]): Query[In, B]
- Definition Classes
- Query
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def sortBy[B](f: scalaql.SortBy[Out, B])(implicit arg0: Order[B]): Query[In, Out]
- Definition Classes
- Query
- def sorted(implicit order: Order[Out]): Query[In, Out]
- Definition Classes
- Query
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- SortByQuery → AnyRef → Any
- def union[In2 <: In, Out0 >: Out](that: Query[In2, Out0]): Query[In2, Out0]
- Definition Classes
- Query
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def where(p: scalaql.Predicate[Out]): Query[In, Out]
- Definition Classes
- Query
- def whereNot(p: scalaql.Predicate[Out]): Query[In, Out]
- Definition Classes
- Query
- def whereSubQuery[In2 <: In](p: (Out) => QueryResult[In2, Boolean]): Query[In2, Out]
- Definition Classes
- Query
- def withFilter(p: scalaql.Predicate[Out]): Query[In, Out]
- Definition Classes
- Query