Packages

case class Document(underlying: BsonDocument) extends BaseDocument[Document] with TraversableLike[(String, BsonValue), Document] with Mutable with Product with Serializable

An mutable Document implementation.

A strictly typed Map[String, BsonValue] like structure that traverses the elements in insertion order. Unlike native scala maps there is no variance in the value type and it always has to be a BsonValue.

underlying

the underlying BsonDocument which stores the data.

Linear Supertypes
Serializable, Serializable, Product, Equals, Mutable, BaseDocument[Document], Bson, Traversable[(String, BsonValue)], GenTraversable[(String, BsonValue)], GenericTraversableTemplate[(String, BsonValue), Traversable], TraversableLike[(String, BsonValue), Document], GenTraversableLike[(String, BsonValue), Document], Parallelizable[(String, BsonValue), ParIterable[(String, BsonValue)]], TraversableOnce[(String, BsonValue)], GenTraversableOnce[(String, BsonValue)], FilterMonadic[(String, BsonValue), Document], HasNewBuilder[(String, BsonValue), Document], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Document
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Mutable
  7. BaseDocument
  8. Bson
  9. Traversable
  10. GenTraversable
  11. GenericTraversableTemplate
  12. TraversableLike
  13. GenTraversableLike
  14. Parallelizable
  15. TraversableOnce
  16. GenTraversableOnce
  17. FilterMonadic
  18. HasNewBuilder
  19. AnyRef
  20. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Document(underlying: BsonDocument)

    underlying

    the underlying BsonDocument which stores the data.

Type Members

  1. type Self = Document
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  2. class WithFilter extends FilterMonadic[A, Repr]
    Definition Classes
    TraversableLike

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(elems: CanBeBsonElement*): Document

    Creates a new document containing a new key/value and all the existing key/values.

    Creates a new document containing a new key/value and all the existing key/values.

    Mapping kv will override existing mappings from this document with the same key.

    elems

    the key/value mapping to be added. This can be any valid (String, BsonValue) pair that can be transformed into a BsonElement via BsonMagnets.CanBeBsonElement implicits and any BsonTransformers that are in scope.

    returns

    a new document containing mappings of this document and the mapping kv.

    Definition Classes
    BaseDocument
  4. def ++[B >: (String, BsonValue), That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Document, B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  5. def ++:[B >: (String, BsonValue), That](that: Traversable[B])(implicit bf: CanBuildFrom[Document, B, That]): That
    Definition Classes
    TraversableLike
  6. def ++:[B >: (String, BsonValue), That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Document, B, That]): That
    Definition Classes
    TraversableLike
  7. def ++=(elems: CanBeBsonElements): Document

    Adds all elements produced by a TraversableOnce to this document.

    Adds all elements produced by a TraversableOnce to this document.

    elems

    a sequence of key/values that make up the Document. This can be any valid sequence of (String, BsonValue) pairs that can be transformed into a sequence of BsonElements via BsonMagnets.CanBeBsonElements implicits and any BsonTransformers that are in scope.

    returns

    the document itself.

  8. def +=(elems: CanBeBsonElement*): Document

    Adds a new key/value pair to this document.

    Adds a new key/value pair to this document. If the document already contains a mapping for the key, it will be overridden by the new value.

    elems

    the key/value pair. This can be any valid (String, BsonValue) pair that can be transformed into a BsonElement via BsonMagnets.CanBeBsonElement implicits and any BsonTransformers that are in scope.

    returns

    the document itself

  9. def -(elems: String*): Document

    Removes one or more elements to this document and returns a new document.

    Removes one or more elements to this document and returns a new document.

    elems

    the remaining elements to remove.

    returns

    A new document with the keys removed.

    Definition Classes
    BaseDocument
  10. def --(xs: GenTraversableOnce[String]): Document

    Removes a number of elements provided by a traversable object and returns a new document without the removed elements.

    Removes a number of elements provided by a traversable object and returns a new document without the removed elements.

    xs

    the traversable object consisting of key-value pairs.

    returns

    a new document with the bindings of this document and those from xs.

    Definition Classes
    BaseDocument
  11. def --=(xs: TraversableOnce[String]): Document

    Removes all elements produced by an iterator from this document.

    Removes all elements produced by an iterator from this document.

    xs

    the iterator producing the elements to remove.

    returns

    the document itself

  12. def -=(elems: String*): Document

    Removes two or more elements from this document.

    Removes two or more elements from this document.

    elems

    the remaining elements to remove.

    returns

    the document itself

  13. def -=(key: String): Document

    Removes a key from this document.

    Removes a key from this document.

    key

    the key to be removed

    returns

    the document itself.

  14. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  15. def addString(b: StringBuilder): StringBuilder
    Definition Classes
    TraversableOnce
  16. def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    TraversableOnce
  17. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    TraversableOnce
  18. def aggregate[B](z: ⇒ B)(seqop: (B, (String, BsonValue)) ⇒ B, combop: (B, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  19. def apply(underlying: BsonDocument): Document

    Creates a new immutable document

    Creates a new immutable document

    underlying

    the underlying BsonDocument

    returns

    a new document

    Attributes
    protected[scala]
    Definition Classes
    Document → BaseDocument
  20. def apply[TResult <: BsonValue](key: String)(implicit e: DefaultsTo[TResult, BsonValue], ct: ClassTag[TResult]): TResult

    Retrieves the value which is associated with the given key or throws a NoSuchElementException.

    Retrieves the value which is associated with the given key or throws a NoSuchElementException.

    key

    the key

    returns

    the value associated with the given key, or throws NoSuchElementException.

    Definition Classes
    BaseDocument
  21. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  22. def clear(): Unit

    Removes all bindings from the document.

    Removes all bindings from the document. After this operation has completed the document will be empty.

  23. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @IntrinsicCandidate()
  24. def collect[B, That](pf: PartialFunction[(String, BsonValue), B])(implicit bf: CanBuildFrom[Document, B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  25. def collectFirst[B](pf: PartialFunction[(String, BsonValue), B]): Option[B]
    Definition Classes
    TraversableOnce
  26. def companion: GenericCompanion[Traversable]
    Definition Classes
    Traversable → GenTraversable → GenericTraversableTemplate
  27. def contains(key: String): Boolean

    Tests whether this map contains a binding for a key

    Tests whether this map contains a binding for a key

    key

    the key

    returns

    true if there is a binding for key in this document, false otherwise.

    Definition Classes
    BaseDocument
  28. def copy(): Document

    Copies the document and creates a new one

    Copies the document and creates a new one

    returns

    a new document with a copy of the underlying BsonDocument

  29. def copyToArray[B >: (String, BsonValue)](xs: Array[B], start: Int, len: Int): Unit
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  30. def copyToArray[B >: (String, BsonValue)](xs: Array[B]): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  31. def copyToArray[B >: (String, BsonValue)](xs: Array[B], start: Int): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  32. def copyToBuffer[B >: (String, BsonValue)](dest: Buffer[B]): Unit
    Definition Classes
    TraversableOnce
  33. def count(p: ((String, BsonValue)) ⇒ Boolean): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  34. def drop(n: Int): Document
    Definition Classes
    TraversableLike → GenTraversableLike
  35. def dropWhile(p: ((String, BsonValue)) ⇒ Boolean): Document
    Definition Classes
    TraversableLike → GenTraversableLike
  36. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  37. def exists(p: ((String, BsonValue)) ⇒ Boolean): Boolean
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  38. def filter(p: ((String, BsonValue)) ⇒ Boolean): Document
    Definition Classes
    TraversableLike → GenTraversableLike
  39. def filterKeys(p: (String) ⇒ Boolean): Document

    Filters this document by retaining only keys satisfying a predicate.

    Filters this document by retaining only keys satisfying a predicate.

    p

    the predicate used to test keys

    returns

    a new document consisting only of those key value pairs of this map where the key satisfies the predicate p.

    Definition Classes
    BaseDocument
  40. def filterNot(p: ((String, BsonValue)) ⇒ Boolean): Document
    Definition Classes
    TraversableLike → GenTraversableLike
  41. def find(p: ((String, BsonValue)) ⇒ Boolean): Option[(String, BsonValue)]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  42. def flatMap[B, That](f: ((String, BsonValue)) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Document, B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  43. def flatten[B](implicit asTraversable: ((String, BsonValue)) ⇒ GenTraversableOnce[B]): Traversable[B]
    Definition Classes
    GenericTraversableTemplate
  44. def fold[A1 >: (String, BsonValue)](z: A1)(op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  45. def foldLeft[B](z: B)(op: (B, (String, BsonValue)) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  46. def foldRight[B](z: B)(op: ((String, BsonValue), B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  47. def forall(p: ((String, BsonValue)) ⇒ Boolean): Boolean
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  48. def foreach[U](f: ((String, BsonValue)) ⇒ U): Unit

    Applies a function f to all elements of this document.

    Applies a function f to all elements of this document.

    U

    the type parameter describing the result of function f. This result will always be ignored. Typically U is Unit, but this is not necessary.

    f

    the function that is applied for its side-effect to every element. The result of function f is discarded.

    Definition Classes
    Document → GenericTraversableTemplate → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  49. def genericBuilder[B]: Builder[B, Traversable[B]]
    Definition Classes
    GenericTraversableTemplate
  50. def get[TResult <: BsonValue](key: String)(implicit e: DefaultsTo[TResult, BsonValue], ct: ClassTag[TResult]): Option[TResult]

    Optionally returns the value associated with a key.

    Optionally returns the value associated with a key.

    key

    the key we want to lookup

    returns

    an option value containing the value associated with key in this document, or None if none exists.

    Definition Classes
    BaseDocument
  51. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  52. def getOrElse[B >: BsonValue](key: String, default: CanBeBsonValue): B

    Returns the value associated with a key, or a default value if the key is not contained in the map.

    Returns the value associated with a key, or a default value if the key is not contained in the map.

    B

    the result type of the default computation.

    key

    the key.

    default

    The default value in case no binding for key is found in the Document. This can be any BsonValue type or any native type that has an implicit BsonTransformer in scope.

    returns

    the value associated with key if it exists, otherwise the result of the default computation.

    Definition Classes
    BaseDocument
  53. def getOrElseUpdate[B](key: String, op: ⇒ B)(implicit transformer: BsonTransformer[B]): BsonValue

    If given key is already in this document, returns associated value.

    If given key is already in this document, returns associated value.

    Otherwise, computes value from given expression op, stores with key in document and returns that value.

    key

    the key to test

    op

    the computation yielding the value to associate with key, if key is previously unbound.

    returns

    the value associated with key (either previously or as a result of executing the method).

  54. def groupBy[K](f: ((String, BsonValue)) ⇒ K): Map[K, Document]
    Definition Classes
    TraversableLike → GenTraversableLike
  55. def hasDefiniteSize: Boolean
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  56. def head: (String, BsonValue)
    Definition Classes
    TraversableLike → GenTraversableLike
  57. def headOption: Option[(String, BsonValue)]
    Definition Classes
    TraversableLike → GenTraversableLike
  58. def init: Document
    Definition Classes
    TraversableLike → GenTraversableLike
  59. def inits: Iterator[Document]
    Definition Classes
    TraversableLike
  60. def isEmpty: Boolean
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  61. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  62. final def isTraversableAgain: Boolean
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  63. def iterator: Iterator[(String, BsonValue)]

    Creates a new iterator over all key/value pairs in this document

    Creates a new iterator over all key/value pairs in this document

    returns

    the new iterator

    Definition Classes
    BaseDocument
  64. def keySet: Set[String]

    Collects all keys of this document in a set.

    Collects all keys of this document in a set.

    returns

    a set containing all keys of this document.

    Definition Classes
    BaseDocument
  65. def keys: Iterable[String]

    Collects all keys of this document in an iterable collection.

    Collects all keys of this document in an iterable collection.

    returns

    the keys of this document as an iterable.

    Definition Classes
    BaseDocument
  66. def keysIterator: Iterator[String]

    Creates an iterator for all keys.

    Creates an iterator for all keys.

    returns

    an iterator over all keys.

    Definition Classes
    BaseDocument
  67. def last: (String, BsonValue)
    Definition Classes
    TraversableLike → GenTraversableLike
  68. def lastOption: Option[(String, BsonValue)]
    Definition Classes
    TraversableLike → GenTraversableLike
  69. def map[B, That](f: ((String, BsonValue)) ⇒ B)(implicit bf: CanBuildFrom[Document, B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  70. def max[B >: (String, BsonValue)](implicit cmp: Ordering[B]): (String, BsonValue)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  71. def maxBy[B](f: ((String, BsonValue)) ⇒ B)(implicit cmp: Ordering[B]): (String, BsonValue)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  72. def min[B >: (String, BsonValue)](implicit cmp: Ordering[B]): (String, BsonValue)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  73. def minBy[B](f: ((String, BsonValue)) ⇒ B)(implicit cmp: Ordering[B]): (String, BsonValue)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  74. def mkString: String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  75. def mkString(sep: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  76. def mkString(start: String, sep: String, end: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  77. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  78. def newBuilder: Builder[(String, BsonValue), Document]

    Creates a new builder for this collection type.

    Creates a new builder for this collection type.

    Definition Classes
    Document → GenericTraversableTemplate → TraversableLike → HasNewBuilder
  79. def nonEmpty: Boolean
    Definition Classes
    TraversableOnce → GenTraversableOnce
  80. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  81. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  82. def par: ParIterable[(String, BsonValue)]
    Definition Classes
    Parallelizable
  83. def parCombiner: Combiner[(String, BsonValue), ParIterable[(String, BsonValue)]]
    Attributes
    protected[this]
    Definition Classes
    TraversableLike → Parallelizable
  84. def partition(p: ((String, BsonValue)) ⇒ Boolean): (Document, Document)
    Definition Classes
    TraversableLike → GenTraversableLike
  85. def product[B >: (String, BsonValue)](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  86. def put[B](key: String, value: B)(implicit transformer: BsonTransformer[B]): Option[BsonValue]

    Adds a new key/value pair to this document and optionally returns previously bound value.

    Adds a new key/value pair to this document and optionally returns previously bound value. If the document already contains a mapping for the key, it will be overridden by the new value.

    key

    the key to update

    value

    the new value

    returns

    an option value containing the value associated with the key before the put operation was executed, or None if key was not defined in the document before.

  87. def reduce[A1 >: (String, BsonValue)](op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  88. def reduceLeft[B >: (String, BsonValue)](op: (B, (String, BsonValue)) ⇒ B): B
    Definition Classes
    TraversableOnce
  89. def reduceLeftOption[B >: (String, BsonValue)](op: (B, (String, BsonValue)) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  90. def reduceOption[A1 >: (String, BsonValue)](op: (A1, A1) ⇒ A1): Option[A1]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  91. def reduceRight[B >: (String, BsonValue)](op: ((String, BsonValue), B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  92. def reduceRightOption[B >: (String, BsonValue)](op: ((String, BsonValue), B) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  93. def remove(key: String): Option[BsonValue]

    Removes a key from this document, returning the value associated previously with that key as an option.

    Removes a key from this document, returning the value associated previously with that key as an option.

    key

    the key to be removed

    returns

    an option value containing the value associated previously with key, or None if key was not defined in the document before.

  94. def repr: Document
    Definition Classes
    TraversableLike → GenTraversableLike
  95. def retain(p: (String, BsonValue) ⇒ Boolean): Document

    Retains only those mappings for which the predicate p returns true.

    Retains only those mappings for which the predicate p returns true.

    p

    The test predicate

  96. def reversed: List[(String, BsonValue)]
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  97. def scan[B >: (String, BsonValue), That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Document, B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  98. def scanLeft[B, That](z: B)(op: (B, (String, BsonValue)) ⇒ B)(implicit bf: CanBuildFrom[Document, B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  99. def scanRight[B, That](z: B)(op: ((String, BsonValue), B) ⇒ B)(implicit bf: CanBuildFrom[Document, B, That]): That
    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.

  100. def seq: Traversable[(String, BsonValue)]
    Definition Classes
    Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  101. def size: Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  102. def sizeHintIfCheap: Int
    Attributes
    protected[scala.collection]
    Definition Classes
    GenTraversableOnce
  103. def slice(from: Int, until: Int): Document
    Definition Classes
    TraversableLike → GenTraversableLike
  104. def span(p: ((String, BsonValue)) ⇒ Boolean): (Document, Document)
    Definition Classes
    TraversableLike → GenTraversableLike
  105. def splitAt(n: Int): (Document, Document)
    Definition Classes
    TraversableLike → GenTraversableLike
  106. def stringPrefix: String
    Definition Classes
    TraversableLike → GenTraversableLike
  107. def sum[B >: (String, BsonValue)](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  108. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  109. def tail: Document
    Definition Classes
    TraversableLike → GenTraversableLike
  110. def tails: Iterator[Document]
    Definition Classes
    TraversableLike
  111. def take(n: Int): Document
    Definition Classes
    TraversableLike → GenTraversableLike
  112. def takeWhile(p: ((String, BsonValue)) ⇒ Boolean): Document
    Definition Classes
    TraversableLike → GenTraversableLike
  113. def thisCollection: Traversable[(String, BsonValue)]
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  114. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, (String, BsonValue), Col[(String, BsonValue)]]): Col[(String, BsonValue)]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  115. def toArray[B >: (String, BsonValue)](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  116. def toBsonDocument[TDocument](documentClass: Class[TDocument], codecRegistry: CodecRegistry): BsonDocument
    Definition Classes
    BaseDocument → Bson
  117. def toBsonDocument(): BsonDocument
    Definition Classes
    BaseDocument → Bson
  118. def toBuffer[B >: (String, BsonValue)]: Buffer[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  119. def toCollection(repr: Document): Traversable[(String, BsonValue)]
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  120. def toIndexedSeq: IndexedSeq[(String, BsonValue)]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  121. def toIterable: Iterable[(String, BsonValue)]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  122. def toIterator: Iterator[(String, BsonValue)]
    Definition Classes
    TraversableLike → GenTraversableOnce
  123. def toJson(settings: JsonWriterSettings): String

    Gets a JSON representation of this document using the given JsonWriterSettings.

    Gets a JSON representation of this document using the given JsonWriterSettings.

    settings

    the JSON writer settings

    returns

    a JSON representation of this document

    Definition Classes
    BaseDocument
  124. def toJson(): String

    Gets a JSON representation of this document

    Gets a JSON representation of this document

    returns

    a JSON representation of this document

    Definition Classes
    BaseDocument
  125. def toList: List[(String, BsonValue)]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  126. def toMap[T, U](implicit ev: <:<[(String, BsonValue), (T, U)]): Map[T, U]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  127. def toSeq: Seq[(String, BsonValue)]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  128. def toSet[B >: (String, BsonValue)]: Set[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  129. def toStream: Stream[(String, BsonValue)]
    Definition Classes
    TraversableLike → GenTraversableOnce
  130. def toString(): String
    Definition Classes
    TraversableLike → Any
  131. def toTraversable: Traversable[(String, BsonValue)]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  132. def toVector: Vector[(String, BsonValue)]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  133. def transform[B](f: (String, BsonValue) ⇒ B)(implicit transformer: BsonTransformer[B]): Document

    Applies a transformation function to all values contained in this document.

    Applies a transformation function to all values contained in this document. The transformation function produces new values from existing keys associated values.

    f

    the transformation to apply

    returns

    the document itself.

  134. def transpose[B](implicit asTraversable: ((String, BsonValue)) ⇒ GenTraversableOnce[B]): Traversable[Traversable[B]]
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

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

  135. val underlying: BsonDocument

    The underlying bson document

    The underlying bson document

    Restricted access to the underlying BsonDocument

    Attributes
    protected[scala]
    Definition Classes
    Document → BaseDocument
  136. def unzip[A1, A2](implicit asPair: ((String, BsonValue)) ⇒ (A1, A2)): (Traversable[A1], Traversable[A2])
    Definition Classes
    GenericTraversableTemplate
  137. def unzip3[A1, A2, A3](implicit asTriple: ((String, BsonValue)) ⇒ (A1, A2, A3)): (Traversable[A1], Traversable[A2], Traversable[A3])
    Definition Classes
    GenericTraversableTemplate
  138. def update[B](key: String, value: B)(implicit transformer: BsonTransformer[B]): Unit

    Adds a new key/value pair to this map.

    Adds a new key/value pair to this map. If the document already contains a mapping for the key, it will be overridden by the new value.

    key

    The key to update

    value

    The new value

  139. def updated(elems: CanBeBsonElement*): Document

    Creates a new Document consisting of all key/value pairs of the current document plus a new pair of a given key and value.

    Creates a new Document consisting of all key/value pairs of the current document plus a new pair of a given key and value.

    elems

    The key/values to add. This can be any valid (String, BsonValue) pair that can be transformed into a BsonElement via BsonMagnets.CanBeBsonElement implicits and any BsonTransformers that are in scope.

    returns

    A fresh immutable document with the binding from key to value added to the new document.

    Definition Classes
    BaseDocument
  140. def updated[B](key: String, value: B)(implicit transformer: BsonTransformer[B]): Document

    Creates a new Document consisting of all key/value pairs of the current document plus a new pair of a given key and value.

    Creates a new Document consisting of all key/value pairs of the current document plus a new pair of a given key and value.

    key

    The key to add

    value

    The new value

    returns

    A fresh immutable document with the binding from key to value added to the new document.

    Definition Classes
    BaseDocument
  141. def values: Iterable[BsonValue]

    Collects all values of this document in an iterable collection.

    Collects all values of this document in an iterable collection.

    returns

    the values of this document as an iterable.

    Definition Classes
    BaseDocument
  142. def valuesIterator: Iterator[BsonValue]

    Creates an iterator for all values in this document.

    Creates an iterator for all values in this document.

    returns

    an iterator over all values that are associated with some key in this document.

    Definition Classes
    BaseDocument
  143. def view(from: Int, until: Int): TraversableView[(String, BsonValue), Document]
    Definition Classes
    TraversableLike
  144. def view: TraversableView[(String, BsonValue), Document]
    Definition Classes
    TraversableLike
  145. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  146. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  147. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  148. def withFilter(p: ((String, BsonValue)) ⇒ Boolean): FilterMonadic[(String, BsonValue), Document]
    Definition Classes
    TraversableLike → FilterMonadic

Deprecated Value Members

  1. def /:[B](z: B)(op: (B, (String, BsonValue)) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldLeft instead of /:

  2. def :\[B](z: B)(op: ((String, BsonValue), B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldRight instead of :\

  3. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Mutable

Inherited from BaseDocument[Document]

Inherited from Bson

Inherited from Traversable[(String, BsonValue)]

Inherited from GenTraversable[(String, BsonValue)]

Inherited from GenericTraversableTemplate[(String, BsonValue), Traversable]

Inherited from TraversableLike[(String, BsonValue), Document]

Inherited from GenTraversableLike[(String, BsonValue), Document]

Inherited from Parallelizable[(String, BsonValue), ParIterable[(String, BsonValue)]]

Inherited from TraversableOnce[(String, BsonValue)]

Inherited from GenTraversableOnce[(String, BsonValue)]

Inherited from FilterMonadic[(String, BsonValue), Document]

Inherited from HasNewBuilder[(String, BsonValue), Document]

Inherited from AnyRef

Inherited from Any

Ungrouped