Packages

  • package root

    This is the documentation for the MongoDB Scala driver.

    This is the documentation for the MongoDB Scala driver.

    Driver structure

    The mongodb scala driver.

    To get started you need a MongoClient instance, either from a connection string or via a org.mongodb.scala.MongoClientSettings.

    Notable packages include:

    Definition Classes
    root
  • package org
    Definition Classes
    root
  • package mongodb
    Definition Classes
    org
  • package scala

    The MongoDB Scala Driver package

    The MongoDB Scala Driver package

    Contains type aliases and companion objects to help when using the Scala API

    Definition Classes
    mongodb
    Since

    1.0

  • package bson

    The bson package, contains mirrors and companion objects for Bson values.

    The bson package, contains mirrors and companion objects for Bson values.

    Definition Classes
    scala
  • object BsonMagnets

    A magnet pattern implementation enforcing the validity of user provided native values being able to be converted into BsonValues.

    A magnet pattern implementation enforcing the validity of user provided native values being able to be converted into BsonValues.

    Attributes
    protected
    Definition Classes
    bson
    Since

    1.0

  • CanBeBsonElement
  • CanBeBsonElements
  • CanBeBsonValue

sealed trait CanBeBsonElement extends AnyRef

Represents a single BsonElement

This is essentially a (String, BsonValue) key value pair. Any pair of (String, T) where type T has a BsonTransformer in scope into a BsonValue is also a valid pair.

Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CanBeBsonElement
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract val bsonElement: BsonElement

Concrete Value Members

  1. def key: String

    The key of the BsonElement

    The key of the BsonElement

    returns

    the key

  2. def value: BsonValue

    The value of the BsonElement

    The value of the BsonElement

    returns

    the BsonValue