Class/Object

com.mongodb.casbah.commons

MongoDBObject

Related Docs: object MongoDBObject | package commons

Permalink

class MongoDBObject extends Map[String, AnyRef] with MapLike[String, AnyRef, MongoDBObject] with Logging with Castable

MapLike scala interface for Mongo DBObjects - proxies an existing DBObject. Cannot act as a DBObject or implement it's interface due to conflicts between the java methods and scala methods. Implicits and explicit methods allow you to convert to java though.

Annotations
@BeanInfo()
Since

1.0

Linear Supertypes
Castable, Logging, Map[String, AnyRef], MapLike[String, AnyRef, MongoDBObject], Cloneable[MongoDBObject], Cloneable, Cloneable, Shrinkable[String], Builder[(String, AnyRef), MongoDBObject], Growable[(String, AnyRef)], Clearable, Map[String, AnyRef], MapLike[String, AnyRef, MongoDBObject], Subtractable[String, MongoDBObject], PartialFunction[String, AnyRef], (String) ⇒ AnyRef, GenMap[String, AnyRef], GenMapLike[String, AnyRef, MongoDBObject], Iterable[(String, AnyRef)], Iterable[(String, AnyRef)], IterableLike[(String, AnyRef), MongoDBObject], Equals, GenIterable[(String, AnyRef)], GenIterableLike[(String, AnyRef), MongoDBObject], Traversable[(String, AnyRef)], Mutable, Traversable[(String, AnyRef)], GenTraversable[(String, AnyRef)], GenericTraversableTemplate[(String, AnyRef), Iterable], TraversableLike[(String, AnyRef), MongoDBObject], GenTraversableLike[(String, AnyRef), MongoDBObject], Parallelizable[(String, AnyRef), ParMap[String, AnyRef]], TraversableOnce[(String, AnyRef)], GenTraversableOnce[(String, AnyRef)], FilterMonadic[(String, AnyRef), MongoDBObject], HasNewBuilder[(String, AnyRef), MongoDBObject], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. MongoDBObject
  2. Castable
  3. Logging
  4. Map
  5. MapLike
  6. Cloneable
  7. Cloneable
  8. Cloneable
  9. Shrinkable
  10. Builder
  11. Growable
  12. Clearable
  13. Map
  14. MapLike
  15. Subtractable
  16. PartialFunction
  17. Function1
  18. GenMap
  19. GenMapLike
  20. Iterable
  21. Iterable
  22. IterableLike
  23. Equals
  24. GenIterable
  25. GenIterableLike
  26. Traversable
  27. Mutable
  28. Traversable
  29. GenTraversable
  30. GenericTraversableTemplate
  31. TraversableLike
  32. GenTraversableLike
  33. Parallelizable
  34. TraversableOnce
  35. GenTraversableOnce
  36. FilterMonadic
  37. HasNewBuilder
  38. AnyRef
  39. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new MongoDBObject(underlying: Imports.DBObject = new BasicDBObject)

    Permalink

Type Members

  1. class DefaultKeySet extends AbstractSet[A] with Set[A] with Serializable

    Permalink
    Attributes
    protected
    Definition Classes
    MapLike
  2. class DefaultValuesIterable extends AbstractIterable[B] with Iterable[B] with Serializable

    Permalink
    Attributes
    protected
    Definition Classes
    MapLike
  3. class FilteredKeys extends AbstractMap[A, B] with DefaultMap[A, B]

    Permalink
    Attributes
    protected
    Definition Classes
    MapLike
  4. class MappedValues[C] extends AbstractMap[A, C] with DefaultMap[A, C]

    Permalink
    Attributes
    protected
    Definition Classes
    MapLike
  5. type Self = MongoDBObject

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  6. class WithFilter extends FilterMonadic[A, Repr]

    Permalink
    Definition Classes
    TraversableLike

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +[B1 >: AnyRef](elem1: (String, B1), elem2: (String, B1), elems: (String, B1)*): Map[String, B1]

    Permalink
    Definition Classes
    MapLike → MapLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) + creates a new map. Use += to add an element to this map and return that map itself.

  4. def +[B1 >: AnyRef](kv: (String, B1)): Map[String, B1]

    Permalink
    Definition Classes
    MapLike → MapLike → GenMapLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) + creates a new map. Use += to add an element to this map and return that map itself.

  5. def ++[A](other: A)(implicit arg0: (A) ⇒ Imports.DBObject): Imports.DBObject

    Permalink
  6. def ++(pairs: (String, Any)*): Imports.DBObject

    Permalink
  7. def ++[B1 >: AnyRef](xs: GenTraversableOnce[(String, B1)]): Map[String, B1]

    Permalink
    Definition Classes
    MapLike → MapLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) ++ creates a new map. Use ++= to add an element to this map and return that map itself.

  8. def ++[B >: (String, AnyRef), That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[MongoDBObject, B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  9. def ++:[B >: (String, AnyRef), That](that: Traversable[B])(implicit bf: CanBuildFrom[MongoDBObject, B, That]): That

    Permalink
    Definition Classes
    TraversableLike
  10. def ++:[B >: (String, AnyRef), That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[MongoDBObject, B, That]): That

    Permalink
    Definition Classes
    TraversableLike
  11. def ++=(xs: TraversableOnce[(String, AnyRef)]): MongoDBObject.this.type

    Permalink
    Definition Classes
    Growable
  12. def +=(kv: (String, AnyRef)): MongoDBObject.this.type

    Permalink
    Definition Classes
    MongoDBObject → MapLike → Builder → Growable
  13. def +=(elem1: (String, AnyRef), elem2: (String, AnyRef), elems: (String, AnyRef)*): MongoDBObject.this.type

    Permalink
    Definition Classes
    Growable
  14. def -(elem1: String, elem2: String, elems: String*): MongoDBObject

    Permalink
    Definition Classes
    MapLike → Subtractable
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) - creates a new map. Use -= to remove an element from this map and return that map itself.

  15. def -(key: String): MongoDBObject

    Permalink
    Definition Classes
    MapLike → MapLike → Subtractable → GenMapLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) - creates a new map. Use -= to remove an element from this map and return that map itself.

  16. def --(xs: GenTraversableOnce[String]): MongoDBObject

    Permalink
    Definition Classes
    MapLike → Subtractable
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) -- creates a new map. Use --= to remove an element from this map and return that map itself.

  17. def --=(xs: TraversableOnce[String]): MongoDBObject.this.type

    Permalink
    Definition Classes
    Shrinkable
  18. def -=(key: String): MongoDBObject.this.type

    Permalink
    Definition Classes
    MongoDBObject → MapLike → Shrinkable
  19. def -=(elem1: String, elem2: String, elems: String*): MongoDBObject.this.type

    Permalink
    Definition Classes
    Shrinkable
  20. def /:[B](z: B)(op: (B, (String, AnyRef)) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  21. def ::(elem: (String, Any)): Seq[Imports.DBObject]

    Permalink

    Returns a new list with this MongoDBObject at the *end* Currently only supports composing with other DBObjects, primarily for the use of the Query DSL; if you want heterogenous lists, use MongoDBList directly.

    Returns a new list with this MongoDBObject at the *end* Currently only supports composing with other DBObjects, primarily for the use of the Query DSL; if you want heterogenous lists, use MongoDBList directly.

    See also

    MongoDBList

  22. def ::[A](elem: A)(implicit arg0: (A) ⇒ Imports.DBObject): Seq[Imports.DBObject]

    Permalink

    Returns a new list with this MongoDBObject at the *end* Currently only supports composing with other DBObjects, primarily for the use of the Query DSL; if you want heterogenous lists, use MongoDBList directly.

    Returns a new list with this MongoDBObject at the *end* Currently only supports composing with other DBObjects, primarily for the use of the Query DSL; if you want heterogenous lists, use MongoDBList directly.

    See also

    MongoDBList

  23. def :\[B](z: B)(op: ((String, AnyRef), B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  24. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  25. def _id: Option[Imports.ObjectId]

    Permalink
  26. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink
    Definition Classes
    MapLike → TraversableOnce
  27. def addString(b: StringBuilder): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  28. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  29. def aggregate[B](z: ⇒ B)(seqop: (B, (String, AnyRef)) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  30. def andThen[C](k: (AnyRef) ⇒ C): PartialFunction[String, C]

    Permalink
    Definition Classes
    PartialFunction → Function1
  31. def apply(key: String): AnyRef

    Permalink
    Definition Classes
    MapLike → GenMapLike → Function1
  32. def applyOrElse[A1 <: String, B1 >: AnyRef](x: A1, default: (A1) ⇒ B1): B1

    Permalink
    Definition Classes
    PartialFunction
  33. def as[A](keys: String*)(implicit arg0: NotNothing[A], arg1: Manifest[A]): A

    Permalink

    Nested as[Type]

    Nested as[Type]

    A helper to recursively fetch and then finally cast items from a DBObject.

    A

    the type to cast the final key to

    keys

    (String*)

    returns

    (A)

    Exceptions thrown

    NoSuchElementException or ClassCastException

  34. def as[A](key: String)(implicit arg0: NotNothing[A], arg1: Manifest[A]): A

    Permalink

    as

    as

    Works like apply(), unsafe, bare return of a value. Returns default if nothing matching is found, else tries to cast a value to the specified type.

    Unless you overrode it, default throws a NoSuchElementException

    A

    Any type as long as its not Nothing

    key

    (String)

    returns

    (A)

    Exceptions thrown

    NoSuchElementException or ClassCastException

  35. def asDBObject: Imports.DBObject

    Permalink
  36. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  37. def canEqual(that: Any): Boolean

    Permalink
    Definition Classes
    IterableLike → Equals
  38. def castToOption[A](value: Any)(implicit arg0: Manifest[A]): Option[A]

    Permalink

    A utility method that allows you to cast a value to an Option[A]

    A utility method that allows you to cast a value to an Option[A]

    Some(value.asInstanceOf[T]) would only cause a runtime ClassCastException when calling get

    This utility ensures that the types match correctly (even boxed scala types eg Int) so we can check against the type and return Some(value) if the types match.

    A

    the type to cast to check against

    value

    the value to type check against

    returns

    Option[A] - Some(value) if the type of instances match else None

    Definition Classes
    Castable
  39. def clear(): Unit

    Permalink
    Definition Classes
    MapLike → Builder → Growable → Clearable
  40. def clone(): MongoDBObject

    Permalink
    Definition Classes
    MapLike → Cloneable → AnyRef
  41. def collect[B, That](pf: PartialFunction[(String, AnyRef), B])(implicit bf: CanBuildFrom[MongoDBObject, B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  42. def collectFirst[B](pf: PartialFunction[(String, AnyRef), B]): Option[B]

    Permalink
    Definition Classes
    TraversableOnce
  43. def companion: GenericCompanion[Iterable]

    Permalink
    Definition Classes
    Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → GenericTraversableTemplate
  44. def compose[A](g: (A) ⇒ String): (A) ⇒ AnyRef

    Permalink
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  45. def contains(key: String): Boolean

    Permalink
    Definition Classes
    MapLike → GenMapLike
  46. def containsField(s: String): Boolean

    Permalink
  47. def copyToArray[B >: (String, AnyRef)](xs: Array[B], start: Int, len: Int): Unit

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  48. def copyToArray[B >: (String, AnyRef)](xs: Array[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  49. def copyToArray[B >: (String, AnyRef)](xs: Array[B], start: Int): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  50. def copyToBuffer[B >: (String, AnyRef)](dest: Buffer[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce
  51. def count(p: ((String, AnyRef)) ⇒ Boolean): Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  52. def default(key: String): AnyRef

    Permalink
    Definition Classes
    MapLike → GenMapLike
  53. def drop(n: Int): MongoDBObject

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  54. def dropRight(n: Int): MongoDBObject

    Permalink
    Definition Classes
    IterableLike
  55. def dropWhile(p: ((String, AnyRef)) ⇒ Boolean): MongoDBObject

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  56. def empty: MongoDBObject

    Permalink
    Definition Classes
    MongoDBObject → Map → Map → MapLike
  57. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  58. def equals(that: Any): Boolean

    Permalink
    Definition Classes
    MongoDBObject → GenMapLike → Equals → AnyRef → Any
  59. def exists(p: ((String, AnyRef)) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  60. def expand[A](key: String)(implicit arg0: NotNothing[A], arg1: Manifest[A]): Option[A]

    Permalink

    Utility method to emulate javascript dot notation

    Utility method to emulate javascript dot notation

    Designed to simplify the occasional insanity of working with nested objects. Your type parameter must be that of the item at the bottom of the tree you specify...

    If the cast fails it will return None

  61. def filter(p: ((String, AnyRef)) ⇒ Boolean): MongoDBObject

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  62. def filterKeys(p: (String) ⇒ Boolean): Map[String, AnyRef]

    Permalink
    Definition Classes
    MapLike → GenMapLike
  63. def filterNot(p: ((String, AnyRef)) ⇒ Boolean): MongoDBObject

    Permalink
    Definition Classes
    MapLike → TraversableLike → GenTraversableLike
  64. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  65. def find(p: ((String, AnyRef)) ⇒ Boolean): Option[(String, AnyRef)]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  66. def flatMap[B, That](f: ((String, AnyRef)) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[MongoDBObject, B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  67. def flatten[B](implicit asTraversable: ((String, AnyRef)) ⇒ GenTraversableOnce[B]): Iterable[B]

    Permalink
    Definition Classes
    GenericTraversableTemplate
  68. def fold[A1 >: (String, AnyRef)](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  69. def foldLeft[B](z: B)(op: (B, (String, AnyRef)) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  70. def foldRight[B](z: B)(op: ((String, AnyRef), B) ⇒ B): B

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  71. def forall(p: ((String, AnyRef)) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  72. def foreach[U](f: ((String, AnyRef)) ⇒ U): Unit

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  73. def genericBuilder[B]: Builder[B, Iterable[B]]

    Permalink
    Definition Classes
    GenericTraversableTemplate
  74. def get(key: String): Option[AnyRef]

    Permalink
    Definition Classes
    MongoDBObject → MapLike → GenMapLike
  75. def getAs[A](keys: String*)(implicit arg0: NotNothing[A], arg1: Manifest[A]): Option[A]

    Permalink

    Nested getAs[Type]

    Nested getAs[Type]

    A helper to recursively fetch and then finally cast items from a DBObject.

    A

    the type to cast the final value

    keys

    Strings the keys to lookup

    returns

    Option[A] - None if value is None, the cast invalid or the key is missing otherwise Some(value)

  76. def getAs[A](key: String)(implicit arg0: NotNothing[A], arg1: Manifest[A]): Option[A]

    Permalink

    Utility method to allow typing without conflicting with Map's required get() method and causing ambiguity.

    Utility method to allow typing without conflicting with Map's required get() method and causing ambiguity.

    An invalid cast will cause the return to be None

    A

    the type to cast the result to

    key

    String the key to lookup

    returns

    Option[A] - None if value is None, the cast invalid or the key is missing otherwise Some(value)

  77. def getAsOrElse[A](key: String, default: ⇒ A)(implicit arg0: NotNothing[A], arg1: Manifest[A]): A

    Permalink
  78. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  79. def getOrElse[B1 >: AnyRef](key: String, default: ⇒ B1): B1

    Permalink
    Definition Classes
    MapLike → GenMapLike
  80. def getOrElseUpdate(key: String, op: ⇒ AnyRef): AnyRef

    Permalink
    Definition Classes
    MapLike
  81. def groupBy[K](f: ((String, AnyRef)) ⇒ K): Map[K, MongoDBObject]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  82. def grouped(size: Int): Iterator[MongoDBObject]

    Permalink
    Definition Classes
    IterableLike
  83. def hasDefiniteSize: Boolean

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  84. def hashCode(): Int

    Permalink
    Definition Classes
    MongoDBObject → GenMapLike → AnyRef → Any
  85. def head: (String, AnyRef)

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  86. def headOption: Option[(String, AnyRef)]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  87. def init: MongoDBObject

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  88. def inits: Iterator[MongoDBObject]

    Permalink
    Definition Classes
    TraversableLike
  89. def isDefinedAt(key: String): Boolean

    Permalink
    Definition Classes
    MapLike → GenMapLike → PartialFunction
  90. def isEmpty: Boolean

    Permalink
    Definition Classes
    MapLike → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  91. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  92. def isPartialObject: Boolean

    Permalink
  93. final def isTraversableAgain: Boolean

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  94. def iterator: Iterator[(String, AnyRef)]

    Permalink
    Definition Classes
    MongoDBObject → MapLike → IterableLike → GenIterableLike
  95. def keySet: Set[String]

    Permalink
    Definition Classes
    MapLike → GenMapLike
  96. def keys: Iterable[String]

    Permalink
    Definition Classes
    MapLike → GenMapLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) keys returns Iterable[A] rather than Iterator[A].

  97. def keysIterator: Iterator[String]

    Permalink
    Definition Classes
    MapLike → GenMapLike
  98. def last: (String, AnyRef)

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  99. def lastOption: Option[(String, AnyRef)]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  100. def lift: (String) ⇒ Option[AnyRef]

    Permalink
    Definition Classes
    PartialFunction
  101. var log: Logger

    Permalink
    Attributes
    protected[com.mongodb.casbah]
    Definition Classes
    Logging
  102. def map[B, That](f: ((String, AnyRef)) ⇒ B)(implicit bf: CanBuildFrom[MongoDBObject, B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  103. def mapResult[NewTo](f: (MongoDBObject) ⇒ NewTo): Builder[(String, AnyRef), NewTo]

    Permalink
    Definition Classes
    Builder
  104. def mapValues[C](f: (AnyRef) ⇒ C): Map[String, C]

    Permalink
    Definition Classes
    MapLike → GenMapLike
  105. def markAsPartialObject(): Unit

    Permalink
  106. def max[B >: (String, AnyRef)](implicit cmp: Ordering[B]): (String, AnyRef)

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  107. def maxBy[B](f: ((String, AnyRef)) ⇒ B)(implicit cmp: Ordering[B]): (String, AnyRef)

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  108. def min[B >: (String, AnyRef)](implicit cmp: Ordering[B]): (String, AnyRef)

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  109. def minBy[B](f: ((String, AnyRef)) ⇒ B)(implicit cmp: Ordering[B]): (String, AnyRef)

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  110. def mkString: String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  111. def mkString(sep: String): String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  112. def mkString(start: String, sep: String, end: String): String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  113. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  114. def newBuilder: Builder[(String, AnyRef), MongoDBObject]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    MapLike → MapLike → TraversableLike → HasNewBuilder
  115. def nonEmpty: Boolean

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  116. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  118. def orElse[A1 <: String, B1 >: AnyRef](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]

    Permalink
    Definition Classes
    PartialFunction
  119. def par: ParMap[String, AnyRef]

    Permalink
    Definition Classes
    Parallelizable
  120. def parCombiner: Combiner[(String, AnyRef), ParMap[String, AnyRef]]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    MapLike → MapLike → TraversableLike → Parallelizable
  121. def partialObject: Boolean

    Permalink
  122. def partition(p: ((String, AnyRef)) ⇒ Boolean): (MongoDBObject, MongoDBObject)

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  123. def product[B >: (String, AnyRef)](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  124. def put(k: String, v: AnyRef): Option[AnyRef]

    Permalink
    Definition Classes
    MongoDBObject → MapLike
  125. def putAll(o: Imports.DBObject): Unit

    Permalink
  126. def reduce[A1 >: (String, AnyRef)](op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  127. def reduceLeft[B >: (String, AnyRef)](op: (B, (String, AnyRef)) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce
  128. def reduceLeftOption[B >: (String, AnyRef)](op: (B, (String, AnyRef)) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  129. def reduceOption[A1 >: (String, AnyRef)](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  130. def reduceRight[B >: (String, AnyRef)](op: ((String, AnyRef), B) ⇒ B): B

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  131. def reduceRightOption[B >: (String, AnyRef)](op: ((String, AnyRef), B) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  132. def remove(key: String): Option[AnyRef]

    Permalink
    Definition Classes
    MapLike
  133. def removeField(key: String): AnyRef

    Permalink
  134. def repr: MongoDBObject

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  135. def result(): MongoDBObject

    Permalink
    Definition Classes
    MapLike → Builder
  136. def retain(p: (String, AnyRef) ⇒ Boolean): MongoDBObject.this.type

    Permalink
    Definition Classes
    MapLike
  137. def reversed: List[(String, AnyRef)]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  138. def runWith[U](action: (AnyRef) ⇒ U): (String) ⇒ Boolean

    Permalink
    Definition Classes
    PartialFunction
  139. def sameElements[B >: (String, AnyRef)](that: GenIterable[B]): Boolean

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  140. def scan[B >: (String, AnyRef), That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[MongoDBObject, B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  141. def scanLeft[B, That](z: B)(op: (B, (String, AnyRef)) ⇒ B)(implicit bf: CanBuildFrom[MongoDBObject, B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  142. def scanRight[B, That](z: B)(op: ((String, AnyRef), B) ⇒ B)(implicit bf: CanBuildFrom[MongoDBObject, B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  143. def seq: Map[String, AnyRef]

    Permalink
    Definition Classes
    Map → Map → GenMap → GenMapLike → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  144. def size: Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  145. def sizeHint(coll: TraversableLike[_, _], delta: Int): Unit

    Permalink
    Definition Classes
    Builder
  146. def sizeHint(coll: TraversableLike[_, _]): Unit

    Permalink
    Definition Classes
    Builder
  147. def sizeHint(size: Int): Unit

    Permalink
    Definition Classes
    Builder
  148. def sizeHintBounded(size: Int, boundingColl: TraversableLike[_, _]): Unit

    Permalink
    Definition Classes
    Builder
  149. def slice(from: Int, until: Int): MongoDBObject

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  150. def sliding(size: Int, step: Int): Iterator[MongoDBObject]

    Permalink
    Definition Classes
    IterableLike
  151. def sliding(size: Int): Iterator[MongoDBObject]

    Permalink
    Definition Classes
    IterableLike
  152. def span(p: ((String, AnyRef)) ⇒ Boolean): (MongoDBObject, MongoDBObject)

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  153. def splitAt(n: Int): (MongoDBObject, MongoDBObject)

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  154. def stringPrefix: String

    Permalink
    Definition Classes
    MapLike → TraversableLike → GenTraversableLike
  155. def sum[B >: (String, AnyRef)](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  156. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  157. def tail: MongoDBObject

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  158. def tails: Iterator[MongoDBObject]

    Permalink
    Definition Classes
    TraversableLike
  159. def take(n: Int): MongoDBObject

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  160. def takeRight(n: Int): MongoDBObject

    Permalink
    Definition Classes
    IterableLike
  161. def takeWhile(p: ((String, AnyRef)) ⇒ Boolean): MongoDBObject

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  162. def thisCollection: Iterable[(String, AnyRef)]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  163. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, (String, AnyRef), Col[(String, AnyRef)]]): Col[(String, AnyRef)]

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  164. def toArray[B >: (String, AnyRef)](implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  165. def toBuffer[C >: (String, AnyRef)]: Buffer[C]

    Permalink
    Definition Classes
    MapLike → TraversableOnce → GenTraversableOnce
  166. def toCollection(repr: MongoDBObject): Iterable[(String, AnyRef)]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  167. def toIndexedSeq: IndexedSeq[(String, AnyRef)]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  168. def toIterable: Iterable[(String, AnyRef)]

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  169. def toIterator: Iterator[(String, AnyRef)]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  170. def toList: List[(String, AnyRef)]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  171. def toMap: Map[_, _]

    Permalink
  172. def toMap[T, U](implicit ev: <:<[(String, AnyRef), (T, U)]): Map[T, U]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  173. def toSeq: Seq[(String, AnyRef)]

    Permalink
    Definition Classes
    MapLike → MapLike → TraversableOnce → GenTraversableOnce
  174. def toSet[B >: (String, AnyRef)]: Set[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  175. def toStream: Stream[(String, AnyRef)]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  176. def toString(): String

    Permalink
    Definition Classes
    MongoDBObject → MapLike → Function1 → TraversableLike → AnyRef → Any
  177. def toTraversable: Traversable[(String, AnyRef)]

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  178. def toVector: Vector[(String, AnyRef)]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  179. def transform(f: (String, AnyRef) ⇒ AnyRef): MongoDBObject.this.type

    Permalink
    Definition Classes
    MapLike
  180. def transpose[B](implicit asTraversable: ((String, AnyRef)) ⇒ GenTraversableOnce[B]): Iterable[Iterable[B]]

    Permalink
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  181. val underlying: Imports.DBObject

    Permalink
  182. def unzip[A1, A2](implicit asPair: ((String, AnyRef)) ⇒ (A1, A2)): (Iterable[A1], Iterable[A2])

    Permalink
    Definition Classes
    GenericTraversableTemplate
  183. def unzip3[A1, A2, A3](implicit asTriple: ((String, AnyRef)) ⇒ (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])

    Permalink
    Definition Classes
    GenericTraversableTemplate
  184. def update(key: String, value: AnyRef): Unit

    Permalink
    Definition Classes
    MapLike
  185. def updated[B1 >: AnyRef](key: String, value: B1): Map[String, B1]

    Permalink
    Definition Classes
    MapLike → MapLike
  186. def values: Iterable[AnyRef]

    Permalink
    Definition Classes
    MapLike → GenMapLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) values returns Iterable[B] rather than Iterator[B].

  187. def valuesIterator: Iterator[AnyRef]

    Permalink
    Definition Classes
    MapLike → GenMapLike
  188. def view(from: Int, until: Int): IterableView[(String, AnyRef), MongoDBObject]

    Permalink
    Definition Classes
    IterableLike → TraversableLike
  189. def view: IterableView[(String, AnyRef), MongoDBObject]

    Permalink
    Definition Classes
    IterableLike → TraversableLike
  190. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  193. def withDefault(d: (String) ⇒ AnyRef): Map[String, AnyRef]

    Permalink
    Definition Classes
    Map
  194. def withDefaultValue(d: AnyRef): Map[String, AnyRef]

    Permalink
    Definition Classes
    Map
  195. def withFilter(p: ((String, AnyRef)) ⇒ Boolean): FilterMonadic[(String, AnyRef), MongoDBObject]

    Permalink
    Definition Classes
    TraversableLike → FilterMonadic
  196. def zip[A1 >: (String, AnyRef), B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[MongoDBObject, (A1, B), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  197. def zipAll[B, A1 >: (String, AnyRef), That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[MongoDBObject, (A1, B), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  198. def zipWithIndex[A1 >: (String, AnyRef), That](implicit bf: CanBuildFrom[MongoDBObject, (A1, Int), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike

Deprecated Value Members

  1. def containsKey(s: String): Boolean

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 2.0) containsKey is deprecated in the MongoDB Driver. You should use containsField instead.

Inherited from Castable

Inherited from Logging

Inherited from Map[String, AnyRef]

Inherited from MapLike[String, AnyRef, MongoDBObject]

Inherited from Cloneable[MongoDBObject]

Inherited from Cloneable

Inherited from Cloneable

Inherited from Shrinkable[String]

Inherited from Builder[(String, AnyRef), MongoDBObject]

Inherited from Growable[(String, AnyRef)]

Inherited from Clearable

Inherited from Map[String, AnyRef]

Inherited from MapLike[String, AnyRef, MongoDBObject]

Inherited from Subtractable[String, MongoDBObject]

Inherited from PartialFunction[String, AnyRef]

Inherited from (String) ⇒ AnyRef

Inherited from GenMap[String, AnyRef]

Inherited from GenMapLike[String, AnyRef, MongoDBObject]

Inherited from Iterable[(String, AnyRef)]

Inherited from Iterable[(String, AnyRef)]

Inherited from IterableLike[(String, AnyRef), MongoDBObject]

Inherited from Equals

Inherited from GenIterable[(String, AnyRef)]

Inherited from GenIterableLike[(String, AnyRef), MongoDBObject]

Inherited from Traversable[(String, AnyRef)]

Inherited from Mutable

Inherited from Traversable[(String, AnyRef)]

Inherited from GenTraversable[(String, AnyRef)]

Inherited from GenericTraversableTemplate[(String, AnyRef), Iterable]

Inherited from TraversableLike[(String, AnyRef), MongoDBObject]

Inherited from GenTraversableLike[(String, AnyRef), MongoDBObject]

Inherited from Parallelizable[(String, AnyRef), ParMap[String, AnyRef]]

Inherited from TraversableOnce[(String, AnyRef)]

Inherited from GenTraversableOnce[(String, AnyRef)]

Inherited from FilterMonadic[(String, AnyRef), MongoDBObject]

Inherited from HasNewBuilder[(String, AnyRef), MongoDBObject]

Inherited from AnyRef

Inherited from Any

Ungrouped