Object/Class

reactivemongo.bson

BSONDecimal

Related Docs: class BSONDecimal | package bson

Permalink

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
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. val NaN: BSONDecimal

    Permalink

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

  5. val NegativeInf: BSONDecimal

    Permalink

    Decimal128 representation of the negative infinity

  6. val NegativeNaN: BSONDecimal

    Permalink

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

  7. val NegativeZero: BSONDecimal

    Permalink

    Decimal128 representation of a negative zero value

  8. val PositiveInf: BSONDecimal

    Permalink

    Decimal128 representation of the positive infinity

  9. val PositiveZero: BSONDecimal

    Permalink

    Decimal128 representation of a postive zero value

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

    Permalink

    Factory alias.

    Factory alias.

    high

    the high-order 64 bits

    low

    the low-order 64 bits

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

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

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

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

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

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

    Permalink

    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()
  17. def fromBigDecimal(value: BigDecimal): Try[BSONDecimal]

    Permalink

    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()
  18. def fromLong(high: Long): Try[BSONDecimal]

    Permalink

    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()
  19. final def getClass(): Class[_]

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

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

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

    Permalink
    Definition Classes
    AnyRef
  23. final def notify(): Unit

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

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

    Permalink

    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

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

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

    Permalink

    Returns the corresponding BigDecimal.

  28. def toString(): String

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

    Permalink

    Extracts the (high, low) representation.

  30. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped