trait Json[T <: Json[T]] extends JsValue
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- Json
- JsValue
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Abstract Value Members
- abstract def apply(pos: Position): JsValue
- abstract def asJsArray: JsArray
- Definition Classes
- JsValue
- abstract def asJsObj: JsObj
- Definition Classes
- JsValue
- abstract def asJson: Json[_]
- Definition Classes
- JsValue
- abstract def empty: T
- abstract def filter(p: (JsPath, JsValue) => Boolean): T
- abstract def filterJsObj(p: (JsPath, JsObj) => Boolean): T
- abstract def filterJsObjRec(p: (JsPath, JsObj) => Boolean): T
- abstract def filterKey(p: (JsPath, JsValue) => Boolean): T
- abstract def filterKeyRec(p: (JsPath, JsValue) => Boolean): T
- abstract def filterRec(p: (JsPath, JsValue) => Boolean): T
- abstract def init: T
- abstract def inserted(path: JsPath, value: JsValue, padWith: JsValue = JsNull): T
- abstract def isArr: Boolean
- Definition Classes
- JsValue
- abstract def isEmpty: Boolean
- abstract def isObj: Boolean
- Definition Classes
- JsValue
- abstract def map[J <: JsValue](m: (JsPath, JsValue) => J, p: (JsPath, JsValue) => Boolean): T
- abstract def mapKey(m: (JsPath, JsValue) => String, p: (JsPath, JsValue) => Boolean): T
- abstract def mapKeyRec(m: (JsPath, JsValue) => String, p: (JsPath, JsValue) => Boolean): T
- abstract def mapRec[J <: JsValue](m: (JsPath, JsValue) => J, p: (JsPath, JsValue) => Boolean): T
- abstract def reduce[V](p: (JsPath, JsValue) => Boolean, m: (JsPath, JsValue) => V, r: (V, V) => V): Option[V]
- abstract def reduceRec[V](p: (JsPath, JsValue) => Boolean, m: (JsPath, JsValue) => V, r: (V, V) => V): Option[V]
- abstract def removed(path: JsPath): T
- abstract def removedAll(xs: IterableOnce[JsPath]): T
- abstract def size: Int
- abstract def tail: T
- abstract def toLazyList: LazyList[(JsPath, JsValue)]
- abstract def toLazyListRec: LazyList[(JsPath, JsValue)]
- abstract def updated(path: JsPath, value: JsValue): T
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##(): Int
- Definition Classes
- AnyRef → Any
- final def +(path: JsPath, value: JsValue): T
- Annotations
- @inline()
- final def +!(path: JsPath, value: JsValue, padWith: JsValue = JsNull): T
- Annotations
- @inline()
- final def -(path: JsPath): T
- Annotations
- @inline()
- final def --(xs: IterableOnce[JsPath]): T
- Annotations
- @inline()
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def apply(path: JsPath): JsValue
- def array(path: JsPath): Option[JsArray]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def asJsBigDec: JsBigDec
- def asJsBigInt: JsBigInt
- def asJsBool: JsBool
- def asJsDouble: JsDouble
- def asJsInt: JsInt
- def asJsLong: JsLong
- def asJsNull: JsNull.type
- def asJsNumber: JsNumber
- def asJsStr: JsStr
- def bigDecimal(path: JsPath): Option[BigDecimal]
- def bigInt(path: JsPath): Option[BigInt]
- def bool(path: JsPath): Option[Boolean]
- def clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def contains(path: JsPath): Boolean
- def count(p: ((JsPath, JsValue)) => Boolean = (_: (JsPath, JsValue)) => true): Int
- def countRec(p: ((JsPath, JsValue)) => Boolean = (_: (JsPath, JsValue)) => true): Int
- def double(path: JsPath): Option[Double]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def exists(p: ((JsPath, JsValue)) => Boolean): Boolean
- def finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def get(pos: Position): Option[JsValue]
- def get(path: JsPath): Option[JsValue]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def int(path: JsPath): Option[Int]
- def isArr(p: (JsArray) => Boolean): Boolean
- Definition Classes
- JsValue
- def isBigDec: Boolean
- def isBigDec(p: (BigDecimal) => Boolean): Boolean
- Definition Classes
- JsValue
- def isBigInt: Boolean
- def isBigInt(p: (BigInt) => Boolean): Boolean
- Definition Classes
- JsValue
- def isBool: Boolean
- def isDecimal: Boolean
- Definition Classes
- JsValue
- def isDouble: Boolean
- def isDouble(p: (Double) => Boolean): Boolean
- Definition Classes
- JsValue
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isInt: Boolean
- def isInt(p: (Int) => Boolean): Boolean
- Definition Classes
- JsValue
- def isIntegral: Boolean
- Definition Classes
- JsValue
- def isJson(p: (Json[_]) => Boolean): Boolean
- Definition Classes
- JsValue
- def isJson: Boolean
- Definition Classes
- JsValue
- def isLong: Boolean
- def isLong(p: (Long) => Boolean): Boolean
- Definition Classes
- JsValue
- def isNotEmpty: Boolean
- def isNotJson: Boolean
- Definition Classes
- JsValue
- def isNotNumber: Boolean
- Definition Classes
- JsValue
- def isNothing: Boolean
- def isNull: Boolean
- def isNumber: Boolean
- def isObj(p: (JsObj) => Boolean): Boolean
- Definition Classes
- JsValue
- def isStr: Boolean
- def isStr(p: (String) => Boolean): Boolean
- Definition Classes
- JsValue
- def long(path: JsPath): Option[Long]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def nonEmpty: Boolean
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def obj(path: JsPath): Option[JsObj]
- def string(path: JsPath): Option[String]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()