case class JSONObject(obj: Map[String, Any]) extends JSONType with Product with Serializable
Represents a JSON Object (map).
- Annotations
- @deprecated
- Deprecated
(Since version 1.0.6) Use The Scala Library Index to find alternatives: https://index.scala-lang.org/
- Source
- Parser.scala
- Alphabetic
- By Inheritance
- JSONObject
- Serializable
- Serializable
- Product
- Equals
- JSONType
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
- val obj: Map[String, Any]
-
def
toString(formatter: ValueFormatter): String
This version of toString allows you to provide your own value formatter.
This version of toString allows you to provide your own value formatter.
- Definition Classes
- JSONObject → JSONType
-
def
toString(): String
Returns a String representation of this JSON value using the JSONFormat.defaultFormatter.
Returns a String representation of this JSON value using the JSONFormat.defaultFormatter.
- Definition Classes
- JSONType → AnyRef → Any