trait Json[T <: Json[T]] extends JsValue

Linear Supertypes
JsValue, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Json
  2. JsValue
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def apply(pos: Position): JsValue
  2. abstract def asJsArray: JsArray
    Definition Classes
    JsValue
  3. abstract def asJsObj: JsObj
    Definition Classes
    JsValue
  4. abstract def asJson: Json[_]
    Definition Classes
    JsValue
  5. abstract def empty: T
  6. abstract def filter(p: (JsPath, JsValue) => Boolean): T
  7. abstract def filterJsObj(p: (JsPath, JsObj) => Boolean): T
  8. abstract def filterJsObjRec(p: (JsPath, JsObj) => Boolean): T
  9. abstract def filterKey(p: (JsPath, JsValue) => Boolean): T
  10. abstract def filterKeyRec(p: (JsPath, JsValue) => Boolean): T
  11. abstract def filterRec(p: (JsPath, JsValue) => Boolean): T
  12. abstract def init: T
  13. abstract def inserted(path: JsPath, value: JsValue, padWith: JsValue = JsNull): T
  14. abstract def isArr: Boolean
    Definition Classes
    JsValue
  15. abstract def isEmpty: Boolean
  16. abstract def isObj: Boolean
    Definition Classes
    JsValue
  17. abstract def map[J <: JsValue](m: (JsPath, JsValue) => J, p: (JsPath, JsValue) => Boolean): T
  18. abstract def mapKey(m: (JsPath, JsValue) => String, p: (JsPath, JsValue) => Boolean): T
  19. abstract def mapKeyRec(m: (JsPath, JsValue) => String, p: (JsPath, JsValue) => Boolean): T
  20. abstract def mapRec[J <: JsValue](m: (JsPath, JsValue) => J, p: (JsPath, JsValue) => Boolean): T
  21. abstract def reduce[V](p: (JsPath, JsValue) => Boolean, m: (JsPath, JsValue) => V, r: (V, V) => V): Option[V]
  22. abstract def reduceRec[V](p: (JsPath, JsValue) => Boolean, m: (JsPath, JsValue) => V, r: (V, V) => V): Option[V]
  23. abstract def removed(path: JsPath): T
  24. abstract def removedAll(xs: IterableOnce[JsPath]): T
  25. abstract def size: Int
  26. abstract def tail: T
  27. abstract def toLazyList: LazyList[(JsPath, JsValue)]
  28. abstract def toLazyListRec: LazyList[(JsPath, JsValue)]
  29. abstract def updated(path: JsPath, value: JsValue): T

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def +(path: JsPath, value: JsValue): T
    Annotations
    @inline()
  4. final def +!(path: JsPath, value: JsValue, padWith: JsValue = JsNull): T
    Annotations
    @inline()
  5. final def -(path: JsPath): T
    Annotations
    @inline()
  6. final def --(xs: IterableOnce[JsPath]): T
    Annotations
    @inline()
  7. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. final def apply(path: JsPath): JsValue
  9. def array(path: JsPath): Option[JsArray]
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. def asJsBigDec: JsBigDec
    Definition Classes
    JsonJsValue
  12. def asJsBigInt: JsBigInt
    Definition Classes
    JsonJsValue
  13. def asJsBool: JsBool
    Definition Classes
    JsonJsValue
  14. def asJsDouble: JsDouble
    Definition Classes
    JsonJsValue
  15. def asJsInt: JsInt
    Definition Classes
    JsonJsValue
  16. def asJsLong: JsLong
    Definition Classes
    JsonJsValue
  17. def asJsNull: JsNull.type
    Definition Classes
    JsonJsValue
  18. def asJsNumber: JsNumber
    Definition Classes
    JsonJsValue
  19. def asJsStr: JsStr
    Definition Classes
    JsonJsValue
  20. def bigDecimal(path: JsPath): Option[BigDecimal]
  21. def bigInt(path: JsPath): Option[BigInt]
  22. def bool(path: JsPath): Option[Boolean]
  23. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  24. def contains(path: JsPath): Boolean
  25. def count(p: ((JsPath, JsValue)) => Boolean = (_: (JsPath, JsValue)) => true): Int
  26. def countRec(p: ((JsPath, JsValue)) => Boolean = (_: (JsPath, JsValue)) => true): Int
  27. def double(path: JsPath): Option[Double]
  28. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  30. def exists(p: ((JsPath, JsValue)) => Boolean): Boolean
  31. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  32. def get(pos: Position): Option[JsValue]
  33. def get(path: JsPath): Option[JsValue]
  34. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  35. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  36. def int(path: JsPath): Option[Int]
  37. def isArr(p: (JsArray) => Boolean): Boolean
    Definition Classes
    JsValue
  38. def isBigDec: Boolean
    Definition Classes
    JsonJsValue
  39. def isBigDec(p: (BigDecimal) => Boolean): Boolean
    Definition Classes
    JsValue
  40. def isBigInt: Boolean
    Definition Classes
    JsonJsValue
  41. def isBigInt(p: (BigInt) => Boolean): Boolean
    Definition Classes
    JsValue
  42. def isBool: Boolean
    Definition Classes
    JsonJsValue
  43. def isDecimal: Boolean
    Definition Classes
    JsValue
  44. def isDouble: Boolean
    Definition Classes
    JsonJsValue
  45. def isDouble(p: (Double) => Boolean): Boolean
    Definition Classes
    JsValue
  46. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  47. def isInt: Boolean
    Definition Classes
    JsonJsValue
  48. def isInt(p: (Int) => Boolean): Boolean
    Definition Classes
    JsValue
  49. def isIntegral: Boolean
    Definition Classes
    JsValue
  50. def isJson(p: (Json[_]) => Boolean): Boolean
    Definition Classes
    JsValue
  51. def isJson: Boolean
    Definition Classes
    JsValue
  52. def isLong: Boolean
    Definition Classes
    JsonJsValue
  53. def isLong(p: (Long) => Boolean): Boolean
    Definition Classes
    JsValue
  54. def isNotEmpty: Boolean
  55. def isNotJson: Boolean
    Definition Classes
    JsValue
  56. def isNotNumber: Boolean
    Definition Classes
    JsValue
  57. def isNothing: Boolean
    Definition Classes
    JsonJsValue
  58. def isNull: Boolean
    Definition Classes
    JsonJsValue
  59. def isNumber: Boolean
    Definition Classes
    JsonJsValue
  60. def isObj(p: (JsObj) => Boolean): Boolean
    Definition Classes
    JsValue
  61. def isStr: Boolean
    Definition Classes
    JsonJsValue
  62. def isStr(p: (String) => Boolean): Boolean
    Definition Classes
    JsValue
  63. def long(path: JsPath): Option[Long]
  64. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  65. final def nonEmpty: Boolean
  66. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  67. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  68. def obj(path: JsPath): Option[JsObj]
  69. def string(path: JsPath): Option[String]
  70. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  71. def toString(): String
    Definition Classes
    AnyRef → Any
  72. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  73. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  74. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from JsValue

Inherited from AnyRef

Inherited from Any

Ungrouped