com.foursquare.rogue

AbstractQueryField

Related Doc: package rogue

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
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

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

Abstract Value Members

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

Concrete Value Members

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

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

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

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

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

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

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

  8. final def asInstanceOf[T0]: T0

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

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

  11. def clone(): AnyRef

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

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

  14. def equals(arg0: Any): Boolean

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

  16. val field: Field[F, M]

  17. def finalize(): Unit

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

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

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

  21. def hashCode(): Int

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

  23. def in[L](vs: L)(implicit arg0: (L) ⇒ Traversable[V]): IndexableQueryClause[List[DB], Index] with Product with Serializable { def withExpectedIndexBehavior(b: com.foursquare.rogue.MaybeIndexed): com.foursquare.rogue.IndexableQueryClause[java.util.List[DB],com.foursquare.rogue.Index] with Product with Serializable{def withExpectedIndexBehavior(b: com.foursquare.rogue.MaybeIndexed): com.foursquare.rogue.IndexableQueryClause[java.util.List[DB],com.foursquare.rogue.Index] with Product with Serializable{def withExpectedIndexBehavior(b: com.foursquare.rogue.MaybeIndexed): com.foursquare.rogue.IndexableQueryClause[java.util.List[DB],com.foursquare.rogue.Index] with Product with Serializable}} }

  24. final def isInstanceOf[T0]: Boolean

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

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

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

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

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

  30. final def notify(): Unit

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

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

    Definition Classes
    AnyRef
  33. def toString(): String

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

  35. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped