Object/Trait

reactivemongo.api.bson

ElementProducer

Related Docs: trait ElementProducer | package bson

Permalink

object ElementProducer extends ElementProducerLowPriority

Linear Supertypes
ElementProducerLowPriority, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ElementProducer
  2. ElementProducerLowPriority
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object Composition extends (ElementProducer, ElementProducer) ⇒ ElementProducer

    Permalink

    A composition operation for ElementProducer, so that it forms an additive monoid with the Empty instance as id.

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  11. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  13. implicit def nameOptionValue2ElementProducer[T](element: (String, Option[T]))(implicit writer: BSONWriter[T]): ElementProducer

    Permalink

    import reactivemongo.api.bson.BSONDocument
    
    BSONDocument(
      "foo" -> Some(1), // tuple as BSONElement("foo", BSONInteger(1))
      "bar" -> Option.empty[Int] // tuple as empty ElementProducer (no field)
    )
  14. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  15. implicit val noneValue2ElementProducer: ((String, None.type)) ⇒ ElementProducer

    Permalink

    import reactivemongo.api.bson.BSONDocument
    
    BSONDocument(
      "foo" -> None // tuple as empty ElementProducer (no field)
    )
  16. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  18. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  19. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  20. implicit def tuple2ElementProducer[T](pair: (String, T))(implicit writer: BSONWriter[T]): ElementProducer

    Permalink

    import reactivemongo.api.bson.BSONDocument
    
    BSONDocument(
      "foo" -> 1 // tuple as BSONElement("foo", BSONInteger(1))
    )
    Definition Classes
    ElementProducerLowPriority
  21. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from ElementProducerLowPriority

Inherited from AnyRef

Inherited from Any

Ungrouped