Packages

sealed abstract class Json extends Product with Serializable

A data type representing possible JSON values.

Source
Json.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Json
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def asArray: Option[Vector[Json]]
  2. abstract def asBoolean: Option[Boolean]
  3. abstract def asNull: Option[Unit]
  4. abstract def asNumber: Option[JsonNumber]
  5. abstract def asObject: Option[JsonObject]
  6. abstract def asString: Option[String]
  7. abstract def canEqual(that: Any): Boolean
    Definition Classes
    Equals
  8. abstract def foldWith[X](folder: Folder[X]): X

    Reduce this JSON value with the given Json.Folder.

  9. abstract def isArray: Boolean
  10. abstract def isBoolean: Boolean
  11. abstract def isNull: Boolean
  12. abstract def isNumber: Boolean
  13. abstract def isObject: Boolean
  14. abstract def isString: Boolean
  15. abstract def mapArray(f: (Vector[Json]) => Vector[Json]): Json
  16. abstract def mapBoolean(f: (Boolean) => Boolean): Json
  17. abstract def mapNumber(f: (JsonNumber) => JsonNumber): Json
  18. abstract def mapObject(f: (JsonObject) => JsonObject): Json
  19. abstract def mapString(f: (String) => String): Json
  20. abstract def productArity: Int
    Definition Classes
    Product
  21. abstract def productElement(n: Int): Any
    Definition Classes
    Product
  22. abstract def withArray(f: (Vector[Json]) => Json): Json
  23. abstract def withBoolean(f: (Boolean) => Json): Json
  24. abstract def withNull(f: => Json): Json
  25. abstract def withNumber(f: (JsonNumber) => Json): Json
  26. abstract def withObject(f: (JsonObject) => Json): Json
  27. abstract def withString(f: (String) => Json): Json

Concrete 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 Json toany2stringadd[Json] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (Json, B)
    Implicit
    This member is added by an implicit conversion from Json toArrowAssoc[Json] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def \\(key: String): List[Json]
  7. final def arrayOrObject[X](or: => X, jsonArray: (Vector[Json]) => X, jsonObject: (JsonObject) => X): X

    Run on an array or object or return the given default.

  8. final def as[A](implicit d: Decoder[A]): Result[A]

    Attempts to decode this JSON value to another data type.

  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  11. def deepDropNullValues: Json

    Drop the entries with a null value if this is an object or array.

  12. def deepMerge(that: Json): Json

    Perform a deep merge of this JSON value with another JSON value.

    Perform a deep merge of this JSON value with another JSON value.

    Objects are merged by key, values from the argument JSON take precedence over values from this JSON. Nested objects are recursed.

    Null, Array, Boolean, String and Number are treated as values, and values from the argument JSON completely replace values from this JSON.

  13. def dropEmptyValues: Json

    Drop the entries with an empty value if this is an array or object.

    Drop the entries with an empty value if this is an array or object.

    Note that this does not apply recursively.

  14. def dropNullValues: Json

    Drop the entries with a null value if this is an object.

    Drop the entries with a null value if this is an object.

    Note that this does not apply recursively.

  15. def ensuring(cond: (Json) => Boolean, msg: => Any): Json
    Implicit
    This member is added by an implicit conversion from Json toEnsuring[Json] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: (Json) => Boolean): Json
    Implicit
    This member is added by an implicit conversion from Json toEnsuring[Json] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean, msg: => Any): Json
    Implicit
    This member is added by an implicit conversion from Json toEnsuring[Json] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: Boolean): Json
    Implicit
    This member is added by an implicit conversion from Json toEnsuring[Json] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def equals(that: Any): Boolean

    Universal equality derived from our type-safe equality.

    Universal equality derived from our type-safe equality.

    Definition Classes
    Json → Equals → AnyRef → Any
  21. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  22. final def findAllByKey(key: String): List[Json]

    Recursively return all values matching the specified key.

    Recursively return all values matching the specified key.

    The Play docs, from which this method was inspired, reads: "Lookup for fieldName in the current object and all descendants."

  23. final def fold[X](jsonNull: => X, jsonBoolean: (Boolean) => X, jsonNumber: (JsonNumber) => X, jsonString: (String) => X, jsonArray: (Vector[Json]) => X, jsonObject: (JsonObject) => X): X

    The catamorphism for the JSON value data type.

  24. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Json toStringFormat[Json] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  25. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  26. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  27. final def hcursor: HCursor

    Construct a successful cursor from this JSON value.

  28. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  29. final def name: String

    The name of the type of the JSON value.

  30. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  31. final def noSpaces: String

    Pretty-print this JSON value to a string with no spaces.

  32. final def noSpacesSortKeys: String

    Pretty-print this JSON value to a string with no spaces, with object keys sorted alphabetically.

  33. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  34. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  35. final def printWith(p: Printer): String

    Pretty-print this JSON value to a string using the given pretty-printer.

  36. def productElementName(n: Int): String
    Definition Classes
    Product
  37. def productElementNames: Iterator[String]
    Definition Classes
    Product
  38. def productIterator: Iterator[Any]
    Definition Classes
    Product
  39. def productPrefix: String
    Definition Classes
    Product
  40. final def spaces2: String

    Pretty-print this JSON value to a string indentation of two spaces.

  41. final def spaces2SortKeys: String

    Pretty-print this JSON value to a string indentation of two spaces, with object keys sorted alphabetically.

  42. final def spaces4: String

    Pretty-print this JSON value to a string indentation of four spaces.

  43. final def spaces4SortKeys: String

    Pretty-print this JSON value to a string indentation of four spaces, with object keys sorted alphabetically.

  44. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  45. final def toString(): String

    Compute a String representation for this JSON value.

    Compute a String representation for this JSON value.

    Definition Classes
    Json → AnyRef → Any
  46. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  47. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  48. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. def [B](y: B): (Json, B)
    Implicit
    This member is added by an implicit conversion from Json toArrowAssoc[Json] 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 AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromJson to any2stringadd[Json]

Inherited by implicit conversion StringFormat fromJson to StringFormat[Json]

Inherited by implicit conversion Ensuring fromJson to Ensuring[Json]

Inherited by implicit conversion ArrowAssoc fromJson to ArrowAssoc[Json]

Ungrouped