Object/Trait

reactivemongo.api.bson

ElementProducer

Related Docs: trait ElementProducer | package bson

Permalink

object ElementProducer extends ElementProducerLowPriority1

Linear Supertypes
ElementProducerLowPriority1, ElementProducerLowPriority2, ElementProducerLowPriority3, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ElementProducer
  2. ElementProducerLowPriority1
  3. ElementProducerLowPriority2
  4. ElementProducerLowPriority3
  5. AnyRef
  6. 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)
    )
    Definition Classes
    ElementProducerLowPriority1
  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. implicit def safeNameOptionValue2ElementProducer[T](element: (String, Option[T]))(implicit writer: SafeBSONWriter[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)
    )
  19. implicit def safeTuple2ElementProducer[T](pair: (String, T))(implicit writer: SafeBSONWriter[T]): ElementProducer

    Permalink

    import reactivemongo.api.bson.BSONDocument
    
    BSONDocument(
      "foo" -> 1 // tuple as BSONElement("foo", BSONInteger(1))
    )
    Definition Classes
    ElementProducerLowPriority2
  20. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    AnyRef → Any
  22. 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
    ElementProducerLowPriority3
  23. final def wait(): Unit

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

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

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

Inherited from ElementProducerLowPriority1

Inherited from ElementProducerLowPriority2

Inherited from ElementProducerLowPriority3

Inherited from AnyRef

Inherited from Any

Ungrouped