final class BSONDouble extends BSONValue with Value with Value
A BSON Double.
reactivemongo.api.bson.BSONDouble(1.23D)
- Alphabetic
- By Inheritance
- BSONDouble
- Value
- BSONBooleanLike
- Value
- BSONNumberLike
- BSONValue
- AnyRef
- Any
- by valueProducer
- by identityValueProducer
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Value Members
-
lazy val
asInt: Try[Int]
- Definition Classes
- BSONDouble → BSONValue
-
final
def
asOpt[T](implicit reader: BSONReader[T]): Option[T]
Optionally parses this value as a
T
one.Optionally parses this value as a
T
one.- returns
Some
successfully parsed value, orNone
if failsimport reactivemongo.api.bson.BSONValue def foo(v: BSONValue): Option[String] = v.asOpt[String]
- Definition Classes
- BSONValue
- Annotations
- @inline()
-
final
def
asTry[T](implicit reader: BSONReader[T]): Try[T]
Tries to parse this value as a
T
one.Tries to parse this value as a
T
one.import scala.util.Try import reactivemongo.api.bson.BSONValue def foo(v: BSONValue): Try[String] = v.asTry[String]
- Definition Classes
- BSONValue
-
val
byteCode: Byte
The code indicating the BSON type for this value as Byte
The code indicating the BSON type for this value as Byte
- Definition Classes
- BSONDouble → BSONValue
-
val
code: Int
The code indicating the BSON type for this value
The code indicating the BSON type for this value
- Definition Classes
- BSONDouble → BSONValue
-
def
equals(that: Any): Boolean
- Definition Classes
- BSONDouble → AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- BSONDouble → AnyRef → Any
-
def
toBoolean: Success[Boolean]
Returns the boolean equivalent value
Returns the boolean equivalent value
- Definition Classes
- BSONDouble → BSONBooleanLike
- Annotations
- @inline()
-
lazy val
toDouble: Try[Double]
Converts this number into a
Double
.Converts this number into a
Double
.- Definition Classes
- BSONDouble → BSONNumberLike → BSONValue
-
lazy val
toFloat: Try[Float]
Converts this number into a
Float
.Converts this number into a
Float
.- Definition Classes
- BSONDouble → BSONNumberLike → BSONValue
-
def
toInt: Try[Int]
Converts this number into an
Int
.Converts this number into an
Int
.- Definition Classes
- BSONDouble → BSONNumberLike
- Annotations
- @inline()
-
def
toLong: Try[Long]
Converts this number into a
Long
.Converts this number into a
Long
.- Definition Classes
- BSONDouble → BSONNumberLike
- Annotations
- @inline()
-
def
toString(): String
- Definition Classes
- BSONDouble → AnyRef → Any
- val value: Double