com.mongodb.casbah.query.dsl

ValueTestFluidQueryOperators

Related Doc: package dsl

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

Source
CoreOperators.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ValueTestFluidQueryOperators
  2. RegexOp
  3. TypeOp
  4. NotEqualsOp
  5. AllOp
  6. SizeOp
  7. ModuloOp
  8. GreaterThanEqualOp
  9. GreaterThanOp
  10. LessThanEqualOp
  11. LessThanOp
  12. QueryOperator
  13. ChainedOperator
  14. AnyRef
  15. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def field: String

    Definition Classes
    ChainedOperator

Concrete Value Members

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

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

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

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

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

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

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

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

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

    Definition Classes
    NotEqualsOp
  10. def $regex(arg: String): Imports.DBObject with QueryExpressionObject

    Definition Classes
    RegexOp
  11. def $size(target: Int): Imports.DBObject with QueryExpressionObject

    Definition Classes
    SizeOp
  12. def $type[A](implicit bsonType: BSONType[A]): Imports.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
  13. def $type(arg: Byte): Imports.DBObject with QueryExpressionObject

    For those who want to pass the static byte from org.bson.BSON explicitly (or with the simple BSON spec indicator)

    For those who want to pass the static byte from org.bson.BSON explicitly (or with the simple BSON spec indicator)

    Definition Classes
    TypeOp
  14. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  15. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  16. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  17. var dbObj: Option[commons.Imports.DBObject]

    Attributes
    protected
    Definition Classes
    ChainedOperator
  18. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  19. def equals(arg0: Any): Boolean

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

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

    Definition Classes
    AnyRef → Any
  22. def hashCode(): Int

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

    Definition Classes
    Any
  24. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  25. final def notify(): Unit

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

    Definition Classes
    AnyRef
  27. def queryEq(target: Any): Imports.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" $eq "bar" will convert to {"foo": "bar"}

    WARNING: This does NOT check that target is a serializable type. That is, for the moment, your own problem.

    Attributes
    protected
    Definition Classes
    QueryOperator
  28. def queryOp(oper: String, target: Any): Imports.DBObject with QueryExpressionObject

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

    Base method for children to call to convert an operator call into a nested 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
  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
    @throws( ... )

Inherited from RegexOp

Inherited from TypeOp

Inherited from NotEqualsOp

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 ChainedOperator

Inherited from AnyRef

Inherited from Any

Ungrouped