play.api.libs.json

JsObject

case class JsObject(underlying: Map[String, JsValue]) extends JsValue with Product with Serializable

Represent a Json object value.

Linear Supertypes
Serializable, Serializable, Product, Equals, JsValue, JsReadable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. JsObject
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. JsValue
  7. JsReadable
  8. AnyRef
  9. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new JsObject(underlying: Map[String, JsValue])

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def +(otherField: (String, JsValue)): JsObject

    Adds one field to the JsObject

  5. 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.

  6. def -(otherField: String): JsObject

    Removes one field from the JsObject

  7. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  8. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  9. 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
  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. 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
  12. def canEqual(other: Any): Boolean

    Definition Classes
    JsObject → Equals
  13. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. def deepMerge(other: JsObject): JsObject

    merges everything in depth and doesn't stop at first level, as ++ does

  15. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  16. def equals(other: Any): Boolean

    Definition Classes
    JsObject → Equals → AnyRef → Any
  17. def fieldSet: Set[(String, JsValue)]

    Return all fields as a set

  18. lazy val fields: Seq[(String, JsValue)]

    The fields of this JsObject in the order passed to to constructor

  19. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  21. def hashCode(): Int

    Definition Classes
    JsObject → AnyRef → Any
  22. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  23. def keys: Set[String]

    Return all keys

  24. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  25. final def notify(): Unit

    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  28. def toString(): String

    Definition Classes
    JsValue → AnyRef → Any
  29. 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
  30. 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
    JsValueJsReadable
  31. def validateOpt[A](implicit rds: Reads[A]): JsResult[Option[A]]

    Definition Classes
    JsValue
  32. lazy val value: Map[String, JsValue]

    The value of this JsObject as an immutable map.

  33. def values: Iterable[JsValue]

    Return all values

  34. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from JsValue

Inherited from JsReadable

Inherited from AnyRef

Inherited from Any

Ungrouped