Packages

c

longevity.model.ptype.QueryDsl

DslPostQueryFilter

class DslPostQueryFilter extends AnyRef

in the query DSL, we have just parsed a (partial or complete) QueryFilter. there are multiple possibilities for what comes next:

1. if we see a LogicalOp followed by another QueryFilter, then we combine the two query filters with the logical op.

2. we parse an order-by clause

3. we parse an offset clause

4. we parse a limit clause

5. we are done parsing the complete QueryFilter.

Source
QueryDsl.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DslPostQueryFilter
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from DslPostQueryFilter to any2stringadd[DslPostQueryFilter] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (DslPostQueryFilter, B)
    Implicit
    This member is added by an implicit conversion from DslPostQueryFilter to ArrowAssoc[DslPostQueryFilter] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def and(filter: QueryFilter[P]): DslPostQueryFilter

    parse an and token a (possibly parenthesized) query, and prepare for a logical operator

  7. def and[A](prop: Prop[_ >: P, A]): DslPostProp[A]

    parse an and token and the next property, and prepare for a relational operator

  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  10. def ensuring(cond: (DslPostQueryFilter) ⇒ Boolean, msg: ⇒ Any): DslPostQueryFilter
    Implicit
    This member is added by an implicit conversion from DslPostQueryFilter to Ensuring[DslPostQueryFilter] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: (DslPostQueryFilter) ⇒ Boolean): DslPostQueryFilter
    Implicit
    This member is added by an implicit conversion from DslPostQueryFilter to Ensuring[DslPostQueryFilter] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean, msg: ⇒ Any): DslPostQueryFilter
    Implicit
    This member is added by an implicit conversion from DslPostQueryFilter to Ensuring[DslPostQueryFilter] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean): DslPostQueryFilter
    Implicit
    This member is added by an implicit conversion from DslPostQueryFilter to Ensuring[DslPostQueryFilter] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from DslPostQueryFilter to StringFormat[DslPostQueryFilter] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  18. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. def limit(i: Int): DslPostLimit

    parse a limit clause, and prepare for whatever comes after the offset (spoiler: nothing)

  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. def offset(i: Int): DslPostOffset

    parse an offset clause, and prepare for an optional limit clause

  26. def or(filter: QueryFilter[P]): DslPostQueryFilter

    parse an or token a (possibly parenthesized) query, and prepare for a logical operator

  27. def or[A](prop: Prop[_ >: P, A]): DslPostProp[A]

    parse an or token and the next property, and prepare for a relational operator

  28. def orderBy[A](ses: QuerySortExpr[P]*): DslPostOrderBy

    parse an orderBy clause, and prepare for optional offset and limit clauses

  29. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  30. def toString(): String
    Definition Classes
    AnyRef → Any
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  34. def [B](y: B): (DslPostQueryFilter, B)
    Implicit
    This member is added by an implicit conversion from DslPostQueryFilter to ArrowAssoc[DslPostQueryFilter] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from DslPostQueryFilter to any2stringadd[DslPostQueryFilter]

Inherited by implicit conversion StringFormat from DslPostQueryFilter to StringFormat[DslPostQueryFilter]

Inherited by implicit conversion Ensuring from DslPostQueryFilter to Ensuring[DslPostQueryFilter]

Inherited by implicit conversion ArrowAssoc from DslPostQueryFilter to ArrowAssoc[DslPostQueryFilter]

Ungrouped