- add(String) - Method in interface org.fossnova.json.JsonArray
-
Wraps passed value with JsonString and delegates the call to
List.add(Object) method.
- add(Number) - Method in interface org.fossnova.json.JsonArray
-
Wraps passed value with JsonNumber and delegates the call to
List.add(Object) method.
- add(Boolean) - Method in interface org.fossnova.json.JsonArray
-
Wraps passed value with JsonBoolean and delegates the call to
List.add(Object) method.
- add(JsonValue) - Method in interface org.fossnova.json.JsonArray
-
Delegates the call to List.add(Object) method.
- add(int, String) - Method in interface org.fossnova.json.JsonArray
-
Wraps passed value with JsonString and delegates the call to
List.add(int, Object) method.
- add(int, Number) - Method in interface org.fossnova.json.JsonArray
-
Wraps passed value with JsonNumber and delegates the call to
List.add(int, Object) method.
- add(int, Boolean) - Method in interface org.fossnova.json.JsonArray
-
Wraps passed value with JsonBoolean and delegates the call to
List.add(int, Object) method.
- add(int, JsonValue) - Method in interface org.fossnova.json.JsonArray
-
Delegates the call to List.add(int, Object) method.
- addNull() - Method in interface org.fossnova.json.JsonArray
-
Delegates the call to
List.add(Object) method.
- addNull(int) - Method in interface org.fossnova.json.JsonArray
-
Delegates the call to List.add(int, Object) method.
- clone() - Method in interface org.fossnova.json.JsonArray
-
Clones this JSON array.
- clone() - Method in interface org.fossnova.json.JsonBoolean
-
Clones this JSON boolean.
- clone() - Method in interface org.fossnova.json.JsonNumber
-
Clones this JSON number.
- clone() - Method in interface org.fossnova.json.JsonObject
-
Clones this JSON object.
- clone() - Method in interface org.fossnova.json.JsonString
-
Clones this JSON string.
- clone() - Method in interface org.fossnova.json.JsonValue
-
Clones this JSON value.
- close() - Method in interface org.fossnova.json.stream.JsonReader
-
Free resources associated with this reader.
- close() - Method in interface org.fossnova.json.stream.JsonWriter
-
Free resources associated with this writer.
- contains(String) - Method in interface org.fossnova.json.JsonArray
-
Wraps passed value with JsonString and delegates the call to
List.contains(Object) method.
- contains(Number) - Method in interface org.fossnova.json.JsonArray
-
Wraps passed value with JsonNumber and delegates the call to
List.contains(Object) method.
- contains(Boolean) - Method in interface org.fossnova.json.JsonArray
-
Wraps passed value with JsonBoolean and delegates the call to
List.contains(Object) method.
- contains(JsonValue) - Method in interface org.fossnova.json.JsonArray
-
Delegates the call to List.contains(Object) method.
- containsKey(String) - Method in interface org.fossnova.json.JsonObject
-
Delegates the call to Map.containsKey(Object) method.
- containsNull() - Method in interface org.fossnova.json.JsonArray
-
Delegates the call to List.contains(Object) method.
- containsNullValue() - Method in interface org.fossnova.json.JsonObject
-
Delegates the call to Map.containsValue(Object) method.
- containsValue(String) - Method in interface org.fossnova.json.JsonObject
-
Wraps passed value with JsonString and delegates the call to
Map.containsValue(Object) method.
- containsValue(Boolean) - Method in interface org.fossnova.json.JsonObject
-
Wraps passed value with JsonBoolean and delegates the call to
Map.containsValue(Object) method.
- containsValue(Number) - Method in interface org.fossnova.json.JsonObject
-
Wraps passed value with JsonNumber and delegates the call to
Map.containsValue(Object) method.
- containsValue(JsonValue) - Method in interface org.fossnova.json.JsonObject
-
Delegates the call to Map.containsValue(Object) method.
- indexOf(String) - Method in interface org.fossnova.json.JsonArray
-
Wraps passed value with JsonString and delegates the call to
List.indexOf(Object) method.
- indexOf(Number) - Method in interface org.fossnova.json.JsonArray
-
Wraps passed value with JsonNumber and delegates the call to
List.indexOf(Object) method.
- indexOf(Boolean) - Method in interface org.fossnova.json.JsonArray
-
Wraps passed value with JsonBoolean and delegates the call to
List.indexOf(Object) method.
- indexOf(JsonValue) - Method in interface org.fossnova.json.JsonArray
-
Delegates the call to List.indexOf(Object) method.
- indexOfNull() - Method in interface org.fossnova.json.JsonArray
-
Delegates the call to List.indexOf(Object) method.
- isArrayEnd() - Method in interface org.fossnova.json.stream.JsonReader
-
Returns true if current JSON parsing event is JSON array end token, false otherwise.
- isArrayStart() - Method in interface org.fossnova.json.stream.JsonReader
-
Returns true if current JSON parsing event is JSON array start token, false otherwise.
- isBoolean() - Method in interface org.fossnova.json.stream.JsonReader
-
Returns true if current JSON parsing event is JSON boolean token, false otherwise.
- isNull() - Method in interface org.fossnova.json.stream.JsonReader
-
Returns true if current JSON parsing event is JSON null token, false otherwise.
- isNumber() - Method in interface org.fossnova.json.stream.JsonReader
-
Returns true if current JSON parsing event is JSON number, false otherwise.
- isObjectEnd() - Method in interface org.fossnova.json.stream.JsonReader
-
Returns true if current JSON parsing event is JSON object end token, false otherwise.
- isObjectStart() - Method in interface org.fossnova.json.stream.JsonReader
-
Returns true if current JSON parsing event is JSON object start token, false otherwise.
- isString() - Method in interface org.fossnova.json.stream.JsonReader
-
Returns true if current JSON parsing event is JSON string, false otherwise.