object DefaultHelper
A helper containing the sealed DefaultsTo trait which is used to determine the default type for a given method.
- Attributes
- protected[scala]
- Since
- 1.0 
- Alphabetic
- By Inheritance
- DefaultHelper
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
-   sealed  class DefaultsTo[A, B] extends AnyRefNeat helper to obtain a default type should one not be given eg: Neat helper to obtain a default type should one not be given eg: def find[T]()(implicit e: T DefaultsTo Document) { ... } The signature of the findmethod ensures that it can only be called if the caller can supply an object of typeDefaultsTo[T, Document]. Of course, the DefaultsTo.default andDefaultsTo.overrideDefault methods make it easy to create such an object for any typeT. Since these methods are implicit, the compiler automatically handles the business of calling one of them and passing the result intofind.But how does the compiler know which method to call? It uses its type inference and implicit resolution rules to determine the appropriate method. There are three cases to consider: 1. findis called with no type parameter. In this case, type T must be inferred. Searching for an implicit method that can provide an object of typeDefaultsTo[T, Document], the compiler findsdefaultandoverrideDefault.defaultis chosen since it has priority (because it's defined in a proper subclass of the trait that defines overrideDefault). As a result, T must be bound toDocument.2. findis called with a non-Document type parameter (e.g.,find[BsonDocument]()). In this case, an object of typeDefaultsTo[BsonDocument, Document]must be supplied. Only theoverrideDefaultmethod can supply it, so the compiler inserts the appropriate call.3. findis called withDocumentas the type parameter. Again, either method is applicable, but default wins due to its higher priority.
-    trait LowPriorityDefaultsTo extends AnyRefLower priority defaultsTo implicit helper 
Value Members
-   final  def !=(arg0: Any): Boolean- Definition Classes
- AnyRef → Any
 
-   final  def ##(): Int- Definition Classes
- AnyRef → Any
 
-   final  def ==(arg0: Any): Boolean- Definition Classes
- AnyRef → Any
 
-   final  def asInstanceOf[T0]: T0- Definition Classes
- Any
 
-    def clone(): AnyRef- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
 
-   final  def eq(arg0: AnyRef): Boolean- Definition Classes
- AnyRef
 
-    def equals(arg0: AnyRef): Boolean- Definition Classes
- AnyRef → Any
 
-    def finalize(): Unit- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
 
-   final  def getClass(): Class[_ <: AnyRef]- Definition Classes
- AnyRef → Any
- Annotations
- @native()
 
-    def hashCode(): Int- Definition Classes
- AnyRef → Any
- Annotations
- @native()
 
-   final  def isInstanceOf[T0]: Boolean- Definition Classes
- Any
 
-   final  def ne(arg0: AnyRef): Boolean- Definition Classes
- AnyRef
 
-   final  def notify(): Unit- Definition Classes
- AnyRef
- Annotations
- @native()
 
-   final  def notifyAll(): Unit- Definition Classes
- AnyRef
- Annotations
- @native()
 
-   final  def synchronized[T0](arg0: => T0): T0- Definition Classes
- AnyRef
 
-    def toString(): String- Definition Classes
- AnyRef → Any
 
-   final  def wait(): Unit- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
 
-   final  def wait(arg0: Long, arg1: Int): Unit- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
 
-   final  def wait(arg0: Long): Unit- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
 
-    object DefaultsTo extends LowPriorityDefaultsToCompanion object for DefaultsTo 
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: