com.mongodb.casbah.query.dsl

ValueTestFluidQueryOperators

trait ValueTestFluidQueryOperators extends LessThanOp with LessThanEqualOp with GreaterThanOp with GreaterThanEqualOp with ModuloOp with SizeOp with AllOp with WhereOp with NotEqualsOp with TypeOp

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. ValueTestFluidQueryOperators
  2. TypeOp
  3. NotEqualsOp
  4. WhereOp
  5. AllOp
  6. SizeOp
  7. ModuloOp
  8. GreaterThanEqualOp
  9. GreaterThanOp
  10. LessThanEqualOp
  11. LessThanOp
  12. QueryOperator
  13. Logging
  14. AnyRef
  15. Any
Visibility
  1. Public
  2. All

Abstract Value Members

  1. def field : String

    Attributes
    abstract
    Definition Classes
    QueryOperator

Concrete Value Members

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

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

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

    Attributes
    final
    Definition Classes
    AnyRef → Any
  4. def $all [A] (a: A)(implicit arg0: AsQueryParam[A]): DBObject with QueryExpressionObject

    Definition Classes
    AllOp
  5. def $gt [A] (a: A)(implicit arg0: AsQueryParam[A]): DBObject with QueryExpressionObject

    Definition Classes
    GreaterThanOp
  6. def $gte [A] (a: A)(implicit arg0: AsQueryParam[A]): DBObject with QueryExpressionObject

    Definition Classes
    GreaterThanEqualOp
  7. def $lt [A] (a: A)(implicit arg0: AsQueryParam[A]): DBObject with QueryExpressionObject

    Definition Classes
    LessThanOp
  8. def $lte [A] (a: A)(implicit arg0: AsQueryParam[A]): DBObject with QueryExpressionObject

    Definition Classes
    LessThanEqualOp
  9. def $mod [A, B] (left: A, right: B)(implicit arg0: ValidNumericType[A], arg1: ValidNumericType[B]): DBObject with QueryExpressionObject

    Definition Classes
    ModuloOp
  10. def $ne [A] (a: A)(implicit arg0: AsQueryParam[A]): DBObject with QueryExpressionObject

    Definition Classes
    NotEqualsOp
  11. def $size (target: BigInt): DBObject with QueryExpressionObject

    Definition Classes
    SizeOp
  12. def $size (target: Int): DBObject with QueryExpressionObject

    Definition Classes
    SizeOp
  13. def $type [A] (implicit bsonType: BSONType[A]): DBObject with QueryExpressionObject

    Matches types based on a Context Bound.

    Matches types based on a Context Bound. Requires anchoring to prevent compiler confusion:

    "foo".$type[Double]

    Definition Classes
    TypeOp
  14. def $type (arg: Byte): DBObject with QueryExpressionObject

    For those who want to pass the static byte from org.

    For those who want to pass the static byte from org.bson.BSON explicitly (or with the simple BSON spec indicator) TODO: Test for a valid byte, right now we accept anything you say.

    Definition Classes
    TypeOp
  15. def $where (target: JSFunction): DBObject with QueryExpressionObject

    Definition Classes
    WhereOp
  16. def == (arg0: AnyRef): Boolean

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

    Attributes
    final
    Definition Classes
    Any
  18. def anyListOp (oper: String, target: Any*): DBObject with QueryExpressionObject

    Definition Classes
    QueryOperator
  19. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  20. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  21. var dbObj : Option[DBObject]

    Attributes
    protected
    Definition Classes
    QueryOperator
  22. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  23. def equals (arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  24. def finalize (): Unit

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

    Attributes
    final
    Definition Classes
    AnyRef → Any
  26. def hashCode (): Int

    Definition Classes
    AnyRef → Any
  27. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  28. var log : Logger

    Attributes
    protected[casbah]
    Definition Classes
    Logging
  29. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  30. def notify (): Unit

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

    Attributes
    final
    Definition Classes
    AnyRef
  32. def op (oper: String, target: Any): DBObject with QueryExpressionObject

    Base method for children to call to convert an operator call into a Mongo DBObject.

    Base method for children to call to convert an operator call into a Mongo DBObject.

    e.g. "foo" $ne "bar" will convert to {"foo": {"$ne": "bar"}}

    Optionally, if dbObj, being Some(DBObject) is defined, the op(oper, ) method will nest the target value and operator inside the existing dbObj - this is useful for things like mixing $lte and $gte WARNING: This does NOT check that target is a serializable type. That is, for the moment, your own problem.

    Attributes
    protected
    Definition Classes
    QueryOperator
  33. def patchSerialization (target: Any): Unit

    Temporary fix code for making sure certain edge cases w/ the serialization libs Don't happen.

    Temporary fix code for making sure certain edge cases w/ the serialization libs Don't happen. This may impose a slight performance penalty.

    Attributes
    protected
    Definition Classes
    QueryOperator
  34. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  35. def toString (): String

    Definition Classes
    AnyRef → Any
  36. def wait (): Unit

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from TypeOp

Inherited from NotEqualsOp

Inherited from WhereOp

Inherited from AllOp

Inherited from SizeOp

Inherited from ModuloOp

Inherited from GreaterThanEqualOp

Inherited from GreaterThanOp

Inherited from LessThanEqualOp

Inherited from LessThanOp

Inherited from QueryOperator

Inherited from Logging

Inherited from AnyRef

Inherited from Any