case class JSONArray(list: List[Any]) extends JSONType with Product with Serializable
Represents a JSON Array (list).
- Annotations
- @deprecated
- Deprecated
(Since version 1.0.6) Use The Scala Library Index to find alternatives: https://index.scala-lang.org/
- Source
- Parser.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- JSONArray
- Serializable
- Serializable
- Product
- Equals
- JSONType
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
- val list: List[Any]
-
def
toString(formatter: ValueFormatter): String
This version of toString allows you to provide your own value formatter.
-
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