case class JSONObject(obj: Map[String, Any]) extends JSONType with Product with Serializable
Represents a JSON Object (map).
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- JSONObject
- Serializable
- Serializable
- Product
- Equals
- JSONType
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new JSONObject(obj: Map[String, Any])
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