reactivemongo.bson

BSONDecimal

object BSONDecimal

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. BSONDecimal
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. val NaN: BSONDecimal

    Decimal128 representation of a Not-a-Number (NaN) value

  7. val NegativeInf: BSONDecimal

    Decimal128 representation of the negative infinity

  8. val NegativeNaN: BSONDecimal

    Decimal128 representation of a negative Not-a-Number (-NaN) value

  9. val NegativeZero: BSONDecimal

    Decimal128 representation of a negative zero value

  10. val PositiveInf: BSONDecimal

    Decimal128 representation of the positive infinity

  11. val PositiveZero: BSONDecimal

    Decimal128 representation of a postive zero value

  12. def apply(high: Long, low: Long): BSONDecimal

    Factory alias.

    Factory alias.

    high

    the high-order 64 bits

    low

    the low-order 64 bits

    Annotations
    @inline()
  13. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  14. def clone(): AnyRef

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

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def fromBigDecimal(value: BigDecimal): Try[BSONDecimal]

    Returns a BSON decimal (Decimal128) corresponding to the given BigDecimal.

    Returns a BSON decimal (Decimal128) corresponding to the given BigDecimal.

    value

    the BigDecimal representation

    Annotations
    @inline()
  19. def fromBigDecimal(value: BigDecimal): Try[BSONDecimal]

    Returns a BSON decimal (Decimal128) corresponding to the given BigDecimal.

    Returns a BSON decimal (Decimal128) corresponding to the given BigDecimal.

    value

    the BigDecimal representation

    Annotations
    @inline()
  20. def fromLong(high: Long): Try[BSONDecimal]

    Returns a Decimal128 value represented the given high 64bits value, using a default for the low one.

    Returns a Decimal128 value represented the given high 64bits value, using a default for the low one.

    high

    the high-order 64 bits

    Annotations
    @inline()
  21. final def getClass(): Class[_]

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

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

    Definition Classes
    Any
  24. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  25. final def notify(): Unit

    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  27. def parse(repr: String): Try[BSONDecimal]

    Returns the Decimal128 corresponding to the given string representation.

    Returns the Decimal128 corresponding to the given string representation.

    repr

    the Decimal128 value represented as string

    See also

    Decimal128 string representation

  28. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  29. def toBigDecimal(decimal: BSONDecimal): Try[BigDecimal]

    Returns the corresponding BigDecimal.

  30. def toString(): String

    Definition Classes
    AnyRef → Any
  31. def unapply(that: Any): Option[(Long, Long)]

    Extracts the (high, low) representation.

  32. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped