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
o

smile.json

JsValueOrdering

object JsValueOrdering extends Ordering[JsValue]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JsValueOrdering
  2. Ordering
  3. PartialOrdering
  4. Equiv
  5. Serializable
  6. Comparator
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. class OrderingOps extends AnyRef
    Definition Classes
    Ordering

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. def compare(a: JsValue, b: JsValue): Int
    Definition Classes
    JsValueOrdering → Ordering → Comparator
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. def equiv(x: JsValue, y: JsValue): Boolean
    Definition Classes
    Ordering → PartialOrdering → Equiv
  10. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def gt(x: JsValue, y: JsValue): Boolean
    Definition Classes
    Ordering → PartialOrdering
  13. def gteq(x: JsValue, y: JsValue): Boolean
    Definition Classes
    Ordering → PartialOrdering
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. def isReverseOf(other: Ordering[_]): Boolean
    Definition Classes
    Ordering
  17. def lt(x: JsValue, y: JsValue): Boolean
    Definition Classes
    Ordering → PartialOrdering
  18. def lteq(x: JsValue, y: JsValue): Boolean
    Definition Classes
    Ordering → PartialOrdering
  19. def max[U <: JsValue](x: U, y: U): U
    Definition Classes
    Ordering
  20. def min[U <: JsValue](x: U, y: U): U
    Definition Classes
    Ordering
  21. implicit def mkOrderingOps(lhs: JsValue): OrderingOps
    Definition Classes
    Ordering
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. def on[U](f: (U) => JsValue): Ordering[U]
    Definition Classes
    Ordering
  26. def orElse(other: Ordering[JsValue]): Ordering[JsValue]
    Definition Classes
    Ordering
  27. def orElseBy[S](f: (JsValue) => S)(implicit ord: Ordering[S]): Ordering[JsValue]
    Definition Classes
    Ordering
  28. def reverse: Ordering[JsValue]
    Definition Classes
    Ordering → PartialOrdering
  29. def reversed(): Comparator[JsValue]
    Definition Classes
    Comparator
  30. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  31. def thenComparing[U <: Comparable[_ >: U <: AnyRef]](arg0: Function[_ >: JsValue <: AnyRef, _ <: U]): Comparator[JsValue]
    Definition Classes
    Comparator
  32. def thenComparing[U <: AnyRef](arg0: Function[_ >: JsValue <: AnyRef, _ <: U], arg1: Comparator[_ >: U <: AnyRef]): Comparator[JsValue]
    Definition Classes
    Comparator
  33. def thenComparing(arg0: Comparator[_ >: JsValue <: AnyRef]): Comparator[JsValue]
    Definition Classes
    Comparator
  34. def thenComparingDouble(arg0: ToDoubleFunction[_ >: JsValue <: AnyRef]): Comparator[JsValue]
    Definition Classes
    Comparator
  35. def thenComparingInt(arg0: ToIntFunction[_ >: JsValue <: AnyRef]): Comparator[JsValue]
    Definition Classes
    Comparator
  36. def thenComparingLong(arg0: ToLongFunction[_ >: JsValue <: AnyRef]): Comparator[JsValue]
    Definition Classes
    Comparator
  37. def toString(): String
    Definition Classes
    AnyRef → Any
  38. def tryCompare(x: JsValue, y: JsValue): Some[Int]
    Definition Classes
    Ordering → PartialOrdering
  39. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  40. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  41. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Ordering[JsValue]

Inherited from PartialOrdering[JsValue]

Inherited from Equiv[JsValue]

Inherited from Serializable

Inherited from Comparator[JsValue]

Inherited from AnyRef

Inherited from Any

Ungrouped