scala.slick.ast

Comprehension

case class Comprehension(from: Seq[(Symbol, Node)] = collection.this.Seq.empty[Nothing], where: Seq[Node] = collection.this.Seq.empty[Nothing], groupBy: Option[Node] = scala.None, orderBy: Seq[(Node, Ordering)] = collection.this.Seq.empty[Nothing], select: Option[Node] = scala.None, fetch: Option[Long] = scala.None, offset: Option[Long] = scala.None) extends Node with DefNode with Product with Serializable

A SQL comprehension

Linear Supertypes
Serializable, java.io.Serializable, Product, Equals, DefNode, Node, NodeGenerator, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Comprehension
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. DefNode
  7. Node
  8. NodeGenerator
  9. AnyRef
  10. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Comprehension(from: Seq[(Symbol, Node)] = collection.this.Seq.empty[Nothing], where: Seq[Node] = collection.this.Seq.empty[Nothing], groupBy: Option[Node] = scala.None, orderBy: Seq[(Node, Ordering)] = collection.this.Seq.empty[Nothing], select: Option[Node] = scala.None, fetch: Option[Long] = scala.None, offset: Option[Long] = scala.None)

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  8. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  9. val fetch: Option[Long]

  10. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  11. val from: Seq[(Symbol, Node)]

  12. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  13. val groupBy: Option[Node]

  14. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  15. def mapChildren(fromMap: (Node) ⇒ Node, otherMap: (Node) ⇒ Node): Node

  16. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. def nodeChildNames: Iterable[String]

    Names for the child nodes to show in AST dumps.

    Names for the child nodes to show in AST dumps. Defaults to a numbered sequence starting at 0 but can be overridden by subclasses to produce more suitable names.

    Definition Classes
    ComprehensionNode
  18. val nodeChildren: collection.Seq[Node]

    All child nodes of this node.

    All child nodes of this node. Must be implemented by subclasses.

    Definition Classes
    ComprehensionNode
  19. def nodeDelegate: Node

    Definition Classes
    NodeNodeGenerator
  20. def nodeGenerators: Seq[(Symbol, Node)]

    Definition Classes
    ComprehensionDefNode
  21. def nodeIntrinsicSymbol: IntrinsicSymbol

    The intrinsic symbol that points to this Node object.

    The intrinsic symbol that points to this Node object.

    Definition Classes
    Node
  22. def nodeMapChildren(f: (Node) ⇒ Node): Node

    Apply a mapping function to all children of this node and recreate the node with the new children.

    Apply a mapping function to all children of this node and recreate the node with the new children. If all new children are identical to the old ones, this node is returned.

    Definition Classes
    ComprehensionNode
  23. def nodeMapGenerators(f: (Symbol) ⇒ Symbol): Node

    Definition Classes
    ComprehensionDefNode
  24. final def nodeMapNodes(s: Iterable[Node], f: (Node) ⇒ Node): Option[IndexedSeq[Node]]

    Attributes
    protected[this]
    Definition Classes
    Node
  25. def nodeMapScopedChildren(f: (Option[Symbol], Node) ⇒ Node): Comprehension

    Definition Classes
    ComprehensionDefNode
  26. def nodePostGeneratorChildren: collection.Seq[Node]

    Definition Classes
    ComprehensionDefNode
  27. final def notify(): Unit

    Definition Classes
    AnyRef
  28. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  29. val offset: Option[Long]

  30. val orderBy: Seq[(Node, Ordering)]

  31. val select: Option[Node]

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

    Definition Classes
    AnyRef
  33. def toString(): String

    Definition Classes
    ComprehensionNode → AnyRef → Any
  34. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  37. val where: Seq[Node]

Inherited from Serializable

Inherited from java.io.Serializable

Inherited from Product

Inherited from Equals

Inherited from DefNode

Inherited from Node

Inherited from NodeGenerator

Inherited from AnyRef

Inherited from Any

Ungrouped