Packages

  • package root

    JSON (JavaScript Object Notation) is a lightweight data-interchange format.

    JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. JSON is a text format that is completely language independent but uses conventions that are familiar to programmers of the C-family of languages,

    JSON has only types of string, number, boolean, object, array, and null. This library includes additional types such as date, int, long, double, counter, binary, UUID, ObjectId (as in BSON), etc.

    It is very easy to parse a JSON object:

    val doc =
      json"""
      {
        "store": {
          "book": [
            {
              "category": "reference",
              "author": "Nigel Rees",
              "title": "Sayings of the Century",
              "price": 8.95
            },
            {
              "category": "fiction",
              "author": "Evelyn Waugh",
              "title": "Sword of Honour",
              "price": 12.99
            },
            {
              "category": "fiction",
              "author": "Herman Melville",
              "title": "Moby Dick",
              "isbn": "0-553-21311-3",
              "price": 8.99
            },
            {
              "category": "fiction",
              "author": "J. R. R. Tolkien",
              "title": "The Lord of the Rings",
              "isbn": "0-395-19395-8",
              "price": 22.99
            }
          ],
          "bicycle": {
            "color": "red",
            "price": 19.95
          }
        }
      }
      """

    The interpolator json parse a string to JsObject. To parse an array, use the interpolator jsan to JsArray. It is also okay to embed variable references directly in processed string literals.

    val x = 1
    json"""
      {
        "x": $x
      }
    """

    If the string is not a JSON object but any other valid JSON expression, one may use parseJson method to convert the string to a JsValue.

    "1".parseJson

    The json interpolator can only be applied to string literals. If you want to parse a string variable, the parseJson method can always be employed. If you know the string contains a JSON object, you may also use the method parseJsObject.

    val s = """{"x":1}"""
    s.parseJsObject

    To serialize a JSON value (of type JsValue) in compact mode, you can just use toString. To pretty print, use the method prettyPrint.

    doc.toString
    doc.prettyPrint

    With a JsObject or JsArray, you can refer to the individual elements with a variation of array syntax, like this:

    doc("store")("bicycle")("color")
    doc("store")("book")(0)("author")

    Note that we follow Scala's array access convention by () rather than [] in JavaScript.

    Besides, you can use the dot notation to access its fields/elements just like in JavaScript:

    doc.store.bicycle.color
    doc.store.book(0).author

    It is worth noting that we didn't define the type/schema of the document while Scala is a strong type language. In other words, we have both the type safe features of strong type language and the flexibility of dynamic language in this JSON library.

    If you try to access a non-exist field, JsUndefined is returned.

    scala> doc.book
    res11: unicorn.json.JsValue = undefined

    Although there are already several nice JSON libraries for Scala, the JSON objects are immutable by design, which is a natural choice for a functional language. For database, however, data mutation is necessary. Therefore, JsObject and JsArray are mutable data structures. You can set/add a field just like in JavaScript:

    json.store.bicycle.color = "green"

    To delete a field from JsObject, use remove method:

    doc.store.book(0) remove "price"

    It is same as setting it JsUndefined:

    doc.store.book(0).price = `JsUndefined`

    To delete an element from JsArray, the remove method will effectively remove it from the array. However, setting an element to undefined doesn't reduce the array size.

    // delete the first element and array size is smaller
    doc.store.book.remove(0)
    // set the first element to undefined but array size keeps same
    doc.store.book(0) = JsUndefined

    It is also possible to append an element or another array to JsArray:

    val a = JsArray(1, 2, 3, 4)
    a += 5
    
    a ++= JsArray(5, 6)

    Common iterative operations such as foreach, map, reduce can be applied to JsArray too.

    doc.store.book.asInstanceOf[JsArray].foreach { book =>
     println(book.price)
    }

    Because Scala is a static language, it is impossible to know doc.store.book is an array at compile time. So it is typed as generic JsValue, which is the parent type of specific JSON data types. Therefore, we use asInstanceOf[JsArray] to convert it to JsArray in order to use foreach.

    Definition Classes
    root
  • package smile
    Definition Classes
    root
  • package json

    Definition Classes
    smile
  • CompactPrinter
  • JsArray
  • JsBinary
  • JsBoolean
  • JsCounter
  • JsDate
  • JsDateTime
  • JsDecimal
  • JsDouble
  • JsInt
  • JsLong
  • JsNull
  • JsObject
  • JsObjectId
  • JsString
  • JsTime
  • JsTimestamp
  • JsUUID
  • JsUndefined
  • JsValue
  • JsValueOrdering
  • JsonHelper
  • JsonParser
  • JsonPrinter
  • JsonSerializer
  • ObjectId
  • ParserInput
  • PrettyPrinter

case class JsDecimal(value: BigDecimal) extends JsValue with Ordered[JsDecimal] with Product with Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JsDecimal
  2. Serializable
  3. Product
  4. Equals
  5. Ordered
  6. Comparable
  7. JsValue
  8. Dynamic
  9. AnyRef
  10. Any
Implicitly
  1. by json2BigDecimal
  2. by orderingToOrdered
  3. by any2stringadd
  4. by StringFormat
  5. by Ensuring
  6. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new JsDecimal(value: BigDecimal)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toany2stringadd[JsDecimal] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (JsDecimal, B)
    Implicit
    This member is added by an implicit conversion from JsDecimal toArrowAssoc[JsDecimal] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. def <(that: JsDecimal): Boolean
    Definition Classes
    Ordered
  6. def <=(that: JsDecimal): Boolean
    Definition Classes
    Ordered
  7. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def >(that: JsDecimal): Boolean
    Definition Classes
    Ordered
  9. def >=(that: JsDecimal): Boolean
    Definition Classes
    Ordered
  10. def abs(arg0: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  11. def abs(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  12. def add(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  13. def add(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  14. def apply(range: Range): JsArray
    Definition Classes
    JsValue
  15. def apply(start: Int, end: Int, step: Int): JsArray
    Definition Classes
    JsValue
  16. def apply(start: Int, end: Int): JsArray
    Definition Classes
    JsValue
  17. def apply(index: Int): JsValue
    Definition Classes
    JsValue
  18. def apply(key: String): JsValue
    Definition Classes
    JsValue
  19. def applyDynamic(key: String)(index: Int): JsValue
    Definition Classes
    JsValue
  20. def asBoolean: Boolean
    Definition Classes
    JsDecimalJsValue
  21. def asDate: LocalDate
    Definition Classes
    JsValue
  22. def asDateTime: LocalDateTime
    Definition Classes
    JsValue
  23. def asDecimal: BigDecimal
    Definition Classes
    JsValue
  24. def asDouble: Double
    Definition Classes
    JsDecimalJsValue
  25. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  26. def asInt: Int
    Definition Classes
    JsDecimalJsValue
  27. def asLong: Long
    Definition Classes
    JsDecimalJsValue
  28. def asTime: LocalTime
    Definition Classes
    JsValue
  29. def asTimestamp: Timestamp
    Definition Classes
    JsValue
  30. def byteValue(): Byte
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    Number
  31. def byteValueExact(): Byte
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  32. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  33. def compactPrint: String
    Definition Classes
    JsValue
  34. def compare(that: JsDecimal): Int
    Definition Classes
    JsDecimal → Ordered
  35. def compareTo(that: JsDecimal): Int
    Definition Classes
    Ordered → Comparable
  36. def divide(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  37. def divide(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  38. def divide(arg0: BigDecimal, arg1: RoundingMode): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  39. def divide(arg0: BigDecimal, arg1: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  40. def divide(arg0: BigDecimal, arg1: Int, arg2: RoundingMode): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  41. def divide(arg0: BigDecimal, arg1: Int, arg2: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  42. def divideAndRemainder(arg0: BigDecimal, arg1: MathContext): Array[BigDecimal]
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  43. def divideAndRemainder(arg0: BigDecimal): Array[BigDecimal]
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  44. def divideToIntegralValue(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  45. def divideToIntegralValue(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  46. def doubleValue(): Double
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal → Number
  47. def ensuring(cond: (JsDecimal) => Boolean, msg: => Any): JsDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toEnsuring[JsDecimal] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  48. def ensuring(cond: (JsDecimal) => Boolean): JsDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toEnsuring[JsDecimal] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  49. def ensuring(cond: Boolean, msg: => Any): JsDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toEnsuring[JsDecimal] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  50. def ensuring(cond: Boolean): JsDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toEnsuring[JsDecimal] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  51. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  52. def equals(o: Any): Boolean
    Definition Classes
    JsDecimal → Equals → AnyRef → Any
  53. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  54. def floatValue(): Float
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal → Number
  55. def get(key: String): Option[JsValue]
    Definition Classes
    JsValue
  56. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  57. def hashCode(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal → AnyRef → Any
  58. def intValue(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal → Number
  59. def intValueExact(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  60. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  61. def longValue(): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal → Number
  62. def longValueExact(): Long
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  63. def max(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  64. def min(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  65. def movePointLeft(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  66. def movePointRight(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  67. def multiply(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  68. def multiply(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  69. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  70. def negate(arg0: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  71. def negate(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  72. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  73. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  74. def plus(arg0: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  75. def plus(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  76. def pow(arg0: Int, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  77. def pow(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  78. def precision(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  79. def prettyPrint: String
    Definition Classes
    JsValue
  80. def productElementNames: Iterator[String]
    Definition Classes
    Product
  81. def remainder(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  82. def remainder(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  83. def remove(index: Int): JsValue
    Definition Classes
    JsValue
  84. def remove(key: String): Option[JsValue]
    Definition Classes
    JsValue
  85. def round(arg0: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  86. def scale(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  87. def scaleByPowerOfTen(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  88. def selectDynamic(key: String): JsValue
    Definition Classes
    JsValue
  89. def setScale(arg0: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  90. def setScale(arg0: Int, arg1: Int): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  91. def setScale(arg0: Int, arg1: RoundingMode): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  92. def shortValue(): Short
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    Number
  93. def shortValueExact(): Short
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  94. def signum(): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  95. def stripTrailingZeros(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  96. def subtract(arg0: BigDecimal, arg1: MathContext): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  97. def subtract(arg0: BigDecimal): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  98. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  99. def toBigInteger(): BigInteger
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  100. def toBigIntegerExact(): BigInteger
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  101. def toEngineeringString(): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  102. def toPlainString(): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  103. def toString(): String
    Definition Classes
    JsDecimalJsValue → AnyRef → Any
  104. def ulp(): BigDecimal
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  105. def unscaledValue(): BigInteger
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Definition Classes
    BigDecimal
  106. def update(index: Int, value: JsValue): JsValue
    Definition Classes
    JsValue
  107. def update(key: String, value: JsValue): JsValue
    Definition Classes
    JsValue
  108. def updateDynamic(index: Int)(value: JsValue): JsValue
    Definition Classes
    JsValue
  109. def updateDynamic(key: String)(value: JsValue): JsValue
    Definition Classes
    JsValue
  110. val value: BigDecimal
  111. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  112. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  113. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Shadowed Implicit Value Members

  1. def <(that: JsDecimal): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toOrdered[JsDecimal] performed by method orderingToOrdered in scala.math.Ordered.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Ordered[JsDecimal]).<(that)
    Definition Classes
    Ordered
  2. def <=(that: JsDecimal): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toOrdered[JsDecimal] performed by method orderingToOrdered in scala.math.Ordered.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Ordered[JsDecimal]).<=(that)
    Definition Classes
    Ordered
  3. def >(that: JsDecimal): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toOrdered[JsDecimal] performed by method orderingToOrdered in scala.math.Ordered.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Ordered[JsDecimal]).>(that)
    Definition Classes
    Ordered
  4. def >=(that: JsDecimal): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toOrdered[JsDecimal] performed by method orderingToOrdered in scala.math.Ordered.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Ordered[JsDecimal]).>=(that)
    Definition Classes
    Ordered
  5. def compare(that: JsDecimal): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toOrdered[JsDecimal] performed by method orderingToOrdered in scala.math.Ordered.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Ordered[JsDecimal]).compare(that)
    Definition Classes
    Ordered
  6. def compareTo(arg0: BigDecimal): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).compareTo(arg0)
    Definition Classes
    BigDecimal → Comparable
  7. def compareTo(that: JsDecimal): Int
    Implicit
    This member is added by an implicit conversion from JsDecimal toOrdered[JsDecimal] performed by method orderingToOrdered in scala.math.Ordered.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: Ordered[JsDecimal]).compareTo(that)
    Definition Classes
    Ordered → Comparable
  8. def equals(arg0: AnyRef): Boolean
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).equals(arg0)
    Definition Classes
    BigDecimal → AnyRef → Any
  9. def toString(): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toBigDecimal performed by method json2BigDecimal in smile.json.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (jsDecimal: BigDecimal).toString()
    Definition Classes
    BigDecimal → AnyRef → Any

Deprecated Value Members

  1. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from JsDecimal toStringFormat[JsDecimal] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  2. def [B](y: B): (JsDecimal, B)
    Implicit
    This member is added by an implicit conversion from JsDecimal toArrowAssoc[JsDecimal] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Ordered[JsDecimal]

Inherited from Comparable[JsDecimal]

Inherited from JsValue

Inherited from Dynamic

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion json2BigDecimal fromJsDecimal to BigDecimal

Inherited by implicit conversion orderingToOrdered fromJsDecimal to Ordered[JsDecimal]

Inherited by implicit conversion any2stringadd fromJsDecimal to any2stringadd[JsDecimal]

Inherited by implicit conversion StringFormat fromJsDecimal to StringFormat[JsDecimal]

Inherited by implicit conversion Ensuring fromJsDecimal to Ensuring[JsDecimal]

Inherited by implicit conversion ArrowAssoc fromJsDecimal to ArrowAssoc[JsDecimal]

Ungrouped