c

org.squeryl.dsl

AbstractQuery

abstract class AbstractQuery[R] extends Query[R]

Linear Supertypes
Query[R], Queryable[R], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AbstractQuery
  2. Query
  3. Queryable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new AbstractQuery(isRoot: Boolean)

Type Members

  1. class SubQueryable [U] extends AnyRef
    Attributes
    protected

Abstract Value Members

  1. abstract def ast: QueryExpressionNode[R]
    Definition Classes
    AbstractQueryQuery
  2. abstract def createCopy(asRoot: Boolean): AbstractQuery[R]
  3. abstract def invokeYield(rsm: ResultSetMapper, resultSet: ResultSet): R
    Attributes
    protected[org.squeryl]
    Definition Classes
    Query

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 buildAst(qy: QueryYield[R], subQueryables: SubQueryable[_]*): QueryExpressionNode[R]
    Attributes
    protected
  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def copy(asRoot: Boolean): AbstractQuery[R]
    Definition Classes
    AbstractQueryQuery
  8. def createSubQueryable[U](q: Queryable[U]): SubQueryable[U]
    Attributes
    protected
  9. val definitionSite: Option[StackTraceElement]

    Builds the AST tree of the this Query, *some state mutation of the AST nodes occurs during AST construction, for example, the parent child relationship is set by this method, unique IDs of node that needs them for example.

    Builds the AST tree of the this Query, *some state mutation of the AST nodes occurs during AST construction, for example, the parent child relationship is set by this method, unique IDs of node that needs them for example.

    After this call, the query (and it's AST) becomes immutable by virtue of the unaccessibility of it's public methods

  10. def distinct: AbstractQuery[R]
    Definition Classes
    AbstractQueryQuery
  11. def dumpAst: String
    Definition Classes
    AbstractQueryQuery
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. def forUpdate: AbstractQuery[R]
    Definition Classes
    AbstractQueryQuery
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  17. def give(rsm: ResultSetMapper, rs: ResultSet): R
    Definition Classes
    AbstractQueryQueryable
  18. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  19. def headOption: Option[R]
    Definition Classes
    Query
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. val isRoot: Boolean
  22. def iterator: Iterator[R] with Closeable
    Definition Classes
    AbstractQueryQuery
  23. def minus(q: Query[R]): Query[R]
    Definition Classes
    Query
  24. val name: String
    Definition Classes
    AbstractQueryQueryable
  25. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  26. final def notify(): Unit
    Definition Classes
    AnyRef
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  28. def page(offset: Int, pageLength: Int): Query[R]
    Definition Classes
    AbstractQueryQuery
  29. val resultSetMapper: ResultSetMapper
  30. def single: R

    Returns the first row of the query.

    Returns the first row of the query. An exception will be thrown if the query returns no row or more than one row.

    Definition Classes
    Query
  31. def singleOption: Option[R]

    Returns Some(singleRow), None if there are none, throws an exception if the query returns more than one row.

    Returns Some(singleRow), None if there are none, throws an exception if the query returns more than one row.

    Definition Classes
    Query
  32. def statement: String

    returns a 'pretty' statement, i.e.

    returns a 'pretty' statement, i.e. values are printed instead of '?'

    Definition Classes
    AbstractQueryQuery
  33. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  34. def toString(): String
    Definition Classes
    AbstractQuery → AnyRef → Any
  35. def union(q: Query[R]): Query[R]
    Definition Classes
    Query
  36. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. def where(whereClauseFunctor: (R) ⇒ LogicalBoolean)(implicit dsl: QueryDsl): Query[R]
    Definition Classes
    Queryable

Inherited from Query[R]

Inherited from Queryable[R]

Inherited from AnyRef

Inherited from Any

Ungrouped