Mongo Scala Driver - org.mongodb.scala.bson.collection.immutable.Document (original) (raw)
case class Document(underlying: BsonDocument) extends BaseDocument[Document] with IterableOps[(String, BsonValue), Iterable, Document] with StrictOptimizedIterableOps[(String, BsonValue), Iterable, Document] with Product with Serializable
Ordering
- Alphabetic
- By Inheritance
Inherited
Document
Serializable
Product
Equals
StrictOptimizedIterableOps
BaseDocument
Bson
Iterable
IterableFactoryDefaults
IterableOps
IterableOnceOps
IterableOnce
AnyRef
Any
Hide All
Show All
Visibility
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- final def ##(): Int
- def +(elems: CanBeBsonElement*): Document
- final def ++(suffix: IterableOnce[(String, BsonValue)]): Document
- final def ++[B >: (String, BsonValue)](suffix: IterableOnce[B]): Iterable[B]
- def -(elems: String*): Document
- def --(xs: GenTraversableOnce[String]): Document
- final def ==(arg0: Any): Boolean
- final def addString(b: StringBuilder): StringBuilder
- final def addString(b: StringBuilder, sep: String): StringBuilder
- def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
- def apply(underlying: BsonDocument): Document
- def apply[TResult <: BsonValue](key: String)(implicit e: DefaultsTo[TResult, BsonValue], ct: ClassTag[TResult]): TResult
- final def asInstanceOf[T0]: T0
- def className: String
- def clone(): AnyRef
- final def coll: Document.this.type
- def collect[B](pf: PartialFunction[(String, BsonValue), B]): Iterable[B]
- def collectFirst[B](pf: PartialFunction[(String, BsonValue), B]): Option[B]
- def concat(suffix: IterableOnce[(String, BsonValue)]): Document
- def concat[B >: (String, BsonValue)](suffix: IterableOnce[B]): Iterable[B]
- def contains(key: String): Boolean
- def copyToArray[B >: (String, BsonValue)](xs: Array[B], start: Int, len: Int): Int
- def copyToArray[B >: (String, BsonValue)](xs: Array[B], start: Int): Int
- def copyToArray[B >: (String, BsonValue)](xs: Array[B]): Int
- def corresponds[B](that: IterableOnce[B])(p: ((String, BsonValue), B) => Boolean): Boolean
- def count(p: ((String, BsonValue)) => Boolean): Int
- def drop(n: Int): Document
- def dropRight(n: Int): Document
- def dropWhile(p: ((String, BsonValue)) => Boolean): Document
- def empty: Document
- final def eq(arg0: AnyRef): Boolean
- def exists(p: ((String, BsonValue)) => Boolean): Boolean
- def filter(pred: ((String, BsonValue)) => Boolean): Document
- def filterImpl(pred: ((String, BsonValue)) => Boolean, isFlipped: Boolean): Document
- def filterKeys(p: (String) => Boolean): Document
- def filterNot(pred: ((String, BsonValue)) => Boolean): Document
- def finalize(): Unit
- def find(p: ((String, BsonValue)) => Boolean): Option[(String, BsonValue)]
- def flatMap[B](f: ((String, BsonValue)) => IterableOnce[B]): Iterable[B]
- def flatten[B](implicit toIterableOnce: ((String, BsonValue)) => IterableOnce[B]): Iterable[B]
- def fold[A1 >: (String, BsonValue)](z: A1)(op: (A1, A1) => A1): A1
- def foldLeft[B](z: B)(op: (B, (String, BsonValue)) => B): B
- def foldRight[B](z: B)(op: ((String, BsonValue), B) => B): B
- def forall(p: ((String, BsonValue)) => Boolean): Boolean
- def foreach[U](f: ((String, BsonValue)) => U): Unit
- def fromSpecific(coll: IterableOnce[(String, BsonValue)]): Document
- def get[TResult <: BsonValue](key: String)(implicit e: DefaultsTo[TResult, BsonValue], ct: ClassTag[TResult]): Option[TResult]
- final def getClass(): Class[_ <: AnyRef]
- def getOrElse[B >: BsonValue](key: String, default: CanBeBsonValue): B
- def groupBy[K](f: ((String, BsonValue)) => K): Map[K, Document]
- def groupMap[K, B](key: ((String, BsonValue)) => K)(f: ((String, BsonValue)) => B): Map[K, Iterable[B]]
- def groupMapReduce[K, B](key: ((String, BsonValue)) => K)(f: ((String, BsonValue)) => B)(reduce: (B, B) => B): Map[K, B]
- def grouped(size: Int): Iterator[Document]
- def head: (String, BsonValue)
- def headOption: Option[(String, BsonValue)]
- def init: Document
- def inits: Iterator[Document]
- def isEmpty: Boolean
- final def isInstanceOf[T0]: Boolean
- def isTraversableAgain: Boolean
- def iterableFactory: IterableFactory[Iterable]
- def iterator: Iterator[(String, BsonValue)]
- def keySet: Set[String]
- def keys: Iterable[String]
- def keysIterator: Iterator[String]
- def knownSize: Int
- def last: (String, BsonValue)
- def lastOption: Option[(String, BsonValue)]
- def lazyZip[B](that: Iterable[B]): LazyZip2[(String, BsonValue), B, Document.this.type]
- def map[B](f: ((String, BsonValue)) => (String, BsonValue)): Document
- def map[B](f: ((String, BsonValue)) => B): Iterable[B]
- def max[B >: (String, BsonValue)](implicit ord: Ordering[B]): (String, BsonValue)
- def maxBy[B](f: ((String, BsonValue)) => B)(implicit cmp: Ordering[B]): (String, BsonValue)
- def maxByOption[B](f: ((String, BsonValue)) => B)(implicit cmp: Ordering[B]): Option[(String, BsonValue)]
- def maxOption[B >: (String, BsonValue)](implicit ord: Ordering[B]): Option[(String, BsonValue)]
- def min[B >: (String, BsonValue)](implicit ord: Ordering[B]): (String, BsonValue)
- def minBy[B](f: ((String, BsonValue)) => B)(implicit cmp: Ordering[B]): (String, BsonValue)
- def minByOption[B](f: ((String, BsonValue)) => B)(implicit cmp: Ordering[B]): Option[(String, BsonValue)]
- def minOption[B >: (String, BsonValue)](implicit ord: Ordering[B]): Option[(String, BsonValue)]
- final def mkString: String
- final def mkString(sep: String): String
- final def mkString(start: String, sep: String, end: String): String
- final def ne(arg0: AnyRef): Boolean
- def newSpecificBuilder: Builder[(String, BsonValue), Document]
- def nonEmpty: Boolean
- final def notify(): Unit
- final def notifyAll(): Unit
- def partition(p: ((String, BsonValue)) => Boolean): (Document, Document)
- def partitionMap[A1, A2](f: ((String, BsonValue)) => Either[A1, A2]): (Iterable[A1], Iterable[A2])
- def product[B >: (String, BsonValue)](implicit num: Numeric[B]): B
- def productElementNames: Iterator[String]
- def reduce[B >: (String, BsonValue)](op: (B, B) => B): B
- def reduceLeft[B >: (String, BsonValue)](op: (B, (String, BsonValue)) => B): B
- def reduceLeftOption[B >: (String, BsonValue)](op: (B, (String, BsonValue)) => B): Option[B]
- def reduceOption[B >: (String, BsonValue)](op: (B, B) => B): Option[B]
- def reduceRight[B >: (String, BsonValue)](op: ((String, BsonValue), B) => B): B
- def reduceRightOption[B >: (String, BsonValue)](op: ((String, BsonValue), B) => B): Option[B]
- def reversed: Iterable[(String, BsonValue)]
- def scan[B >: (String, BsonValue)](z: B)(op: (B, B) => B): Iterable[B]
- def scanLeft[B](z: B)(op: (B, (String, BsonValue)) => B): Iterable[B]
- def scanRight[B](z: B)(op: ((String, BsonValue), B) => B): Iterable[B]
- def size: Int
- def sizeCompare(that: Iterable[_]): Int
- def sizeCompare(otherSize: Int): Int
- final def sizeIs: SizeCompareOps
- def slice(from: Int, until: Int): Document
- def sliding(size: Int, step: Int): Iterator[Document]
- def sliding(size: Int): Iterator[Document]
- def span(p: ((String, BsonValue)) => Boolean): (Document, Document)
- def splitAt(n: Int): (Document, Document)
- def stepper[S <: Stepper[_]](implicit shape: StepperShape[(String, BsonValue), S]): S
- final def strictOptimizedCollect[B, C2](b: Builder[B, C2], pf: PartialFunction[(String, BsonValue), B]): C2
- final def strictOptimizedConcat[B >: (String, BsonValue), C2](that: IterableOnce[B], b: Builder[B, C2]): C2
- final def strictOptimizedFlatMap[B, C2](b: Builder[B, C2], f: ((String, BsonValue)) => IterableOnce[B]): C2
- final def strictOptimizedFlatten[B, C2](b: Builder[B, C2])(implicit toIterableOnce: ((String, BsonValue)) => IterableOnce[B]): C2
- final def strictOptimizedMap[B, C2](b: Builder[B, C2], f: ((String, BsonValue)) => B): C2
- final def strictOptimizedZip[B, C2](that: IterableOnce[B], b: Builder[((String, BsonValue), B), C2]): C2
- def stringPrefix: String
- def sum[B >: (String, BsonValue)](implicit num: Numeric[B]): B
- final def synchronized[T0](arg0: => T0): T0
- def tail: Document
- def tails: Iterator[Document]
- def take(n: Int): Document
- def takeRight(n: Int): Document
- def takeWhile(p: ((String, BsonValue)) => Boolean): Document
- def tapEach[U](f: ((String, BsonValue)) => U): Document
- def to[C1](factory: Factory[(String, BsonValue), C1]): C1
- def toArray[B >: (String, BsonValue)](implicit arg0: ClassTag[B]): Array[B]
- def toBsonDocument[TDocument](documentClass: Class[TDocument], codecRegistry: CodecRegistry): BsonDocument
- def toBsonDocument: BsonDocument
- final def toBuffer[B >: (String, BsonValue)]: Buffer[B]
- def toIndexedSeq: IndexedSeq[(String, BsonValue)]
- final def toIterable: Document.this.type
- def toJson(settings: JsonWriterSettings): String
- def toJson(): String
- def toList: List[(String, BsonValue)]
- def toMap[K, V](implicit ev: <:<[(String, BsonValue), (K, V)]): Map[K, V]
- def toSeq: Seq[(String, BsonValue)]
- def toSet[B >: (String, BsonValue)]: Set[B]
- def toString(): String
- def toVector: Vector[(String, BsonValue)]
- def transpose[B](implicit asIterable: ((String, BsonValue)) => Iterable[B]): Iterable[Iterable[B]]
- val underlying: BsonDocument
- def unzip[A1, A2](implicit asPair: ((String, BsonValue)) => (A1, A2)): (Iterable[A1], Iterable[A2])
- def unzip3[A1, A2, A3](implicit asTriple: ((String, BsonValue)) => (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
- def updated(elems: CanBeBsonElement*): Document
- def updated[B](key: String, value: B)(implicit transformer: BsonTransformer[B]): Document
- def values: Iterable[BsonValue]
- def valuesIterator: Iterator[BsonValue]
- def view: View[(String, BsonValue)]
- final def wait(): Unit
- final def wait(arg0: Long, arg1: Int): Unit
- final def wait(arg0: Long): Unit
- def withFilter(p: ((String, BsonValue)) => Boolean): WithFilter[(String, BsonValue), Iterable]
- def zip[B](that: IterableOnce[B]): Iterable[((String, BsonValue), B)]
- def zipAll[A1 >: (String, BsonValue), B](that: Iterable[B], thisElem: A1, thatElem: B): Iterable[(A1, B)]
- def zipWithIndex: Iterable[((String, BsonValue), Int)]
Deprecated Value Members
- def ++:[B >: (String, BsonValue)](that: IterableOnce[B]): Iterable[B]
- final def /:[B](z: B)(op: (B, (String, BsonValue)) => B): B
- final def :\[B](z: B)(op: ((String, BsonValue), B) => B): B
- def aggregate[B](z: => B)(seqop: (B, (String, BsonValue)) => B, combop: (B, B) => B): B
- def companion: IterableFactory[Iterable]
- final def copyToBuffer[B >: (String, BsonValue)](dest: Buffer[B]): Unit
- def hasDefiniteSize: Boolean
- final def repr: Document
- def seq: Document.this.type
- final def toIterator: Iterator[(String, BsonValue)]
- final def toStream: Stream[(String, BsonValue)]
- final def toTraversable: Traversable[(String, BsonValue)]
- def view(from: Int, until: Int): View[(String, BsonValue)]