Class

io.fsq.rogue

AbstractQueryField

Related Doc: package rogue

Permalink

abstract class AbstractQueryField[F, V, DB, M] extends AnyRef

Trait representing a field and all the operations on it.

F

the underlying type of the field

V

the type of values allowed to be compared to the field

DB

the type V is converted into in the BSON representation of the field

M

the type of the owner of the field

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AbstractQueryField
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new AbstractQueryField(field: Field[F, M])

    Permalink

Abstract Value Members

  1. abstract def valueToDB(v: V): DB

    Permalink

Concrete Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def <(v: V): LtQueryClause[DB]

    Permalink
  4. def <=(v: V): LtEqQueryClause[DB]

    Permalink
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. def >(v: V): GtQueryClause[DB]

    Permalink
  7. def >=(v: V): GtEqQueryClause[DB]

    Permalink
  8. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  9. def between(range: (V, V)): BetweenQueryClause[DB]

    Permalink
  10. def between(v1: V, v2: V): BetweenQueryClause[DB]

    Permalink
  11. def clone(): AnyRef

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

    Permalink
    Definition Classes
    AnyRef
  13. def eqs(v: V): EqClause[DB, Nothing]

    Permalink
  14. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  15. def exists(b: Boolean): ExistsQueryClause

    Permalink
  16. val field: Field[F, M]

    Permalink
  17. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  19. def gt(v: V): GtQueryClause[DB]

    Permalink
  20. def gte(v: V): GtEqQueryClause[DB]

    Permalink
  21. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  22. def hastype(t: MongoType.Value): TypeQueryClause

    Permalink
  23. def in[L](vs: L)(implicit arg0: (L) ⇒ Traversable[V]): IndexableQueryClause[List[DB], Index] with Product with Serializable

    Permalink
  24. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  25. def lt(v: V): LtQueryClause[DB]

    Permalink
  26. def lte(v: V): LtEqQueryClause[DB]

    Permalink
  27. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  28. def neqs(v: V): NeQueryClause[DB]

    Permalink
  29. def nin[L](vs: L)(implicit arg0: (L) ⇒ Traversable[V]): NinQueryClause[DB]

    Permalink
  30. def not[F2](clause: (Field[F, M]) ⇒ QueryClause[F2]): QueryClause[F2]

    Permalink
  31. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  32. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  33. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  34. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  35. def valuesToDB(vs: Traversable[V]): Traversable[DB]

    Permalink
  36. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped