Packages

class JSONObject extends org.json.JSONObject

Custom JSON Object which overrides org.json implementation to add a validation for trailing commas

Linear Supertypes
org.json.JSONObject, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JSONObject
  2. JSONObject
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new JSONObject(x: JSONTokener)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def accumulate(arg0: String, arg1: Any): org.json.JSONObject
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  5. def append(arg0: String, arg1: Any): org.json.JSONObject
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  8. def entrySet(): Set[Entry[String, AnyRef]]
    Attributes
    protected[org.json]
    Definition Classes
    JSONObject
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. def get(arg0: String): AnyRef
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  13. def getBigDecimal(arg0: String): BigDecimal
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  14. def getBigInteger(arg0: String): BigInteger
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  15. def getBoolean(arg0: String): Boolean
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def getDouble(arg0: String): Double
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  18. def getEnum[E <: Enum[E]](arg0: Class[E], arg1: String): E
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  19. def getFloat(arg0: String): Float
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  20. def getInt(arg0: String): Int
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  21. def getJSONArray(arg0: String): org.json.JSONArray
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  22. def getJSONObject(arg0: String): org.json.JSONObject
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  23. def getLong(arg0: String): Long
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  24. def getNumber(arg0: String): Number
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  25. def getString(arg0: String): String
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  26. def has(arg0: String): Boolean
    Definition Classes
    JSONObject
  27. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  28. def increment(arg0: String): org.json.JSONObject
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  29. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  30. def isNull(arg0: String): Boolean
    Definition Classes
    JSONObject
  31. def keySet(): Set[String]
    Definition Classes
    JSONObject
  32. def keys(): Iterator[String]
    Definition Classes
    JSONObject
  33. def length(): Int
    Definition Classes
    JSONObject
  34. def names(): org.json.JSONArray
    Definition Classes
    JSONObject
  35. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  36. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  37. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  38. def opt(arg0: String): AnyRef
    Definition Classes
    JSONObject
  39. def optBigDecimal(arg0: String, arg1: BigDecimal): BigDecimal
    Definition Classes
    JSONObject
  40. def optBigInteger(arg0: String, arg1: BigInteger): BigInteger
    Definition Classes
    JSONObject
  41. def optBoolean(arg0: String, arg1: Boolean): Boolean
    Definition Classes
    JSONObject
  42. def optBoolean(arg0: String): Boolean
    Definition Classes
    JSONObject
  43. def optDouble(arg0: String, arg1: Double): Double
    Definition Classes
    JSONObject
  44. def optDouble(arg0: String): Double
    Definition Classes
    JSONObject
  45. def optEnum[E <: Enum[E]](arg0: Class[E], arg1: String, arg2: E): E
    Definition Classes
    JSONObject
  46. def optEnum[E <: Enum[E]](arg0: Class[E], arg1: String): E
    Definition Classes
    JSONObject
  47. def optFloat(arg0: String, arg1: Float): Float
    Definition Classes
    JSONObject
  48. def optFloat(arg0: String): Float
    Definition Classes
    JSONObject
  49. def optInt(arg0: String, arg1: Int): Int
    Definition Classes
    JSONObject
  50. def optInt(arg0: String): Int
    Definition Classes
    JSONObject
  51. def optJSONArray(arg0: String): org.json.JSONArray
    Definition Classes
    JSONObject
  52. def optJSONObject(arg0: String): org.json.JSONObject
    Definition Classes
    JSONObject
  53. def optLong(arg0: String, arg1: Long): Long
    Definition Classes
    JSONObject
  54. def optLong(arg0: String): Long
    Definition Classes
    JSONObject
  55. def optNumber(arg0: String, arg1: Number): Number
    Definition Classes
    JSONObject
  56. def optNumber(arg0: String): Number
    Definition Classes
    JSONObject
  57. def optQuery(arg0: JSONPointer): AnyRef
    Definition Classes
    JSONObject
  58. def optQuery(arg0: String): AnyRef
    Definition Classes
    JSONObject
  59. def optString(arg0: String, arg1: String): String
    Definition Classes
    JSONObject
  60. def optString(arg0: String): String
    Definition Classes
    JSONObject
  61. def put(arg0: String, arg1: Any): org.json.JSONObject
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  62. def put(arg0: String, arg1: Map[_, _]): org.json.JSONObject
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  63. def put(arg0: String, arg1: Long): org.json.JSONObject
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  64. def put(arg0: String, arg1: Int): org.json.JSONObject
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  65. def put(arg0: String, arg1: Float): org.json.JSONObject
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  66. def put(arg0: String, arg1: Double): org.json.JSONObject
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  67. def put(arg0: String, arg1: Collection[_]): org.json.JSONObject
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  68. def put(arg0: String, arg1: Boolean): org.json.JSONObject
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  69. def putOnce(arg0: String, arg1: Any): org.json.JSONObject
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  70. def putOpt(arg0: String, arg1: Any): org.json.JSONObject
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  71. def query(arg0: JSONPointer): AnyRef
    Definition Classes
    JSONObject
  72. def query(arg0: String): AnyRef
    Definition Classes
    JSONObject
  73. def remove(arg0: String): AnyRef
    Definition Classes
    JSONObject
  74. def similar(arg0: Any): Boolean
    Definition Classes
    JSONObject
  75. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  76. def toJSONArray(arg0: org.json.JSONArray): org.json.JSONArray
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  77. def toMap(): Map[String, AnyRef]
    Definition Classes
    JSONObject
  78. def toString(arg0: Int): String
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  79. def toString(): String
    Definition Classes
    JSONObject → AnyRef → Any
  80. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  81. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  82. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  83. def write(arg0: Writer, arg1: Int, arg2: Int): Writer
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )
  84. def write(arg0: Writer): Writer
    Definition Classes
    JSONObject
    Annotations
    @throws( classOf[org.json.JSONException] )

Inherited from org.json.JSONObject

Inherited from AnyRef

Inherited from Any

Ungrouped