case class JsObject(underlying: Map[String, JsValue]) extends JsValue with Product with Serializable
- Alphabetic
- By Inheritance
- JsObject
- Serializable
- Product
- Equals
- JsValue
- JsReadable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- def +(otherField: (String, JsValue)): JsObject
Adds one field to the JsObject
- def ++(other: JsObject): JsObject
Merge this object with another one.
Merge this object with another one. Values from other override value of the current object.
- def -(otherField: String): JsObject
Removes one field from the JsObject
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def as[T](implicit fjs: Reads[T]): T
Tries to convert the node into a T, throwing an exception if it can't.
Tries to convert the node into a T, throwing an exception if it can't. An implicit Reads[T] must be defined.
- Definition Classes
- JsReadable
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def asOpt[T](implicit fjs: Reads[T]): Option[T]
Tries to convert the node into a T.
Tries to convert the node into a T. An implicit Reads[T] must be defined. Any error is mapped to None
- returns
Some[T] if it succeeds, None if it fails.
- Definition Classes
- JsReadable
- def canEqual(other: Any): Boolean
- Definition Classes
- JsObject → Equals
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def deepMerge(other: JsObject): JsObject
merges everything in depth and doesn't stop at first level, as ++ does
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(other: Any): Boolean
- Definition Classes
- JsObject → Equals → AnyRef → Any
- def fieldSet: Set[(String, JsValue)]
Return all fields as a set
- lazy val fields: Seq[(String, JsValue)]
The fields of this JsObject in the order passed to the constructor
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- JsObject → AnyRef → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def keys: Set[String]
Return all keys
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- JsValue → AnyRef → Any
- def transform[A <: JsValue](rds: Reads[A]): JsResult[A]
Transforms this node into a JsResult using provided Json transformer Reads[JsValue]
Transforms this node into a JsResult using provided Json transformer Reads[JsValue]
- Definition Classes
- JsReadable
- def validate[A](implicit rds: Reads[A]): JsResult[A]
Tries to convert the node into a JsResult[T] (Success or Error).
Tries to convert the node into a JsResult[T] (Success or Error). An implicit Reads[T] must be defined.
- Definition Classes
- JsValue → JsReadable
- def validateOpt[A](implicit rds: Reads[A]): JsResult[Option[A]]
- Definition Classes
- JsValue
- lazy val value: Map[String, JsValue]
The value of this JsObject as an immutable map.
- def values: Iterable[JsValue]
Return all values
- 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()