- join(String) - Method in class org.codehaus.jettison.json.JSONArray
-
Make a string from the contents of this JSONArray.
- JSONArray - Class in org.codehaus.jettison.json
-
A JSONArray is an ordered sequence of values.
- JSONArray() - Constructor for class org.codehaus.jettison.json.JSONArray
-
Construct an empty JSONArray.
- JSONArray(int) - Constructor for class org.codehaus.jettison.json.JSONArray
-
Construct an empty JSONArray with a given capacity.
- JSONArray(JSONTokener) - Constructor for class org.codehaus.jettison.json.JSONArray
-
Construct a JSONArray from a JSONTokener.
- JSONArray(String) - Constructor for class org.codehaus.jettison.json.JSONArray
-
Construct a JSONArray from a source sJSON text.
- JSONArray(Collection) - Constructor for class org.codehaus.jettison.json.JSONArray
-
Construct a JSONArray from a Collection.
- JSONException - Exception in org.codehaus.jettison.json
-
The JSONException is thrown by the JSON.org classes then things are amiss.
- JSONException(String) - Constructor for exception org.codehaus.jettison.json.JSONException
-
Constructs a JSONException with an explanatory message.
- JSONException(String, int, int) - Constructor for exception org.codehaus.jettison.json.JSONException
-
- JSONException(Throwable) - Constructor for exception org.codehaus.jettison.json.JSONException
-
- JSONObject - Class in org.codehaus.jettison.json
-
A JSONObject is an unordered collection of name/value pairs.
- JSONObject() - Constructor for class org.codehaus.jettison.json.JSONObject
-
Construct an empty JSONObject.
- JSONObject(List) - Constructor for class org.codehaus.jettison.json.JSONObject
-
- JSONObject(boolean, List, boolean, boolean) - Constructor for class org.codehaus.jettison.json.JSONObject
-
- JSONObject(JSONObject, String[]) - Constructor for class org.codehaus.jettison.json.JSONObject
-
Construct a JSONObject from a subset of another JSONObject.
- JSONObject(JSONTokener) - Constructor for class org.codehaus.jettison.json.JSONObject
-
Construct a JSONObject from a JSONTokener.
- JSONObject(Map) - Constructor for class org.codehaus.jettison.json.JSONObject
-
Construct a JSONObject from a Map.
- JSONObject(Object, String[]) - Constructor for class org.codehaus.jettison.json.JSONObject
-
Construct a JSONObject from an Object, using reflection to find the
public members.
- JSONObject(String) - Constructor for class org.codehaus.jettison.json.JSONObject
-
Construct a JSONObject from a string.
- JSONSequenceTooLargeException - Exception in org.codehaus.jettison
-
- JSONSequenceTooLargeException(String) - Constructor for exception org.codehaus.jettison.JSONSequenceTooLargeException
-
- JSONString - Interface in org.codehaus.jettison.json
-
The JSONString
interface allows a toJSONString()
method so that a class can change the behavior of
JSONObject.toString()
, JSONArray.toString()
,
and JSONWriter.value(
Object)
.
- JSONStringer - Class in org.codehaus.jettison.json
-
JSONStringer provides a quick and convenient way of producing JSON text.
- JSONStringer() - Constructor for class org.codehaus.jettison.json.JSONStringer
-
Make a fresh JSONStringer.
- JSONTokener - Class in org.codehaus.jettison.json
-
A JSONTokener takes a source string and extracts characters and tokens from
it.
- JSONTokener(String) - Constructor for class org.codehaus.jettison.json.JSONTokener
-
Construct a JSONTokener from a string.
- JSONTokener(String, int) - Constructor for class org.codehaus.jettison.json.JSONTokener
-
Construct a JSONTokener from a string.
- JSONWriter - Class in org.codehaus.jettison.json
-
JSONWriter provides a quick and convenient way of producing JSON text.
- JSONWriter(Writer) - Constructor for class org.codehaus.jettison.json.JSONWriter
-
Make a fresh JSONWriter.
- names() - Method in class org.codehaus.jettison.json.JSONObject
-
Produce a JSONArray containing the names of the elements of this
JSONObject.
- newJSONArray() - Method in class org.codehaus.jettison.json.JSONTokener
-
- newJSONObject() - Method in class org.codehaus.jettison.json.JSONTokener
-
- next() - Method in class org.codehaus.jettison.badgerfish.BadgerFishXMLStreamReader
-
- next() - Method in class org.codehaus.jettison.json.JSONTokener
-
Get the next character in the source string.
- next(char) - Method in class org.codehaus.jettison.json.JSONTokener
-
Consume the next character, and check that it matches a specified
character.
- next(int) - Method in class org.codehaus.jettison.json.JSONTokener
-
Get the next n characters.
- next() - Method in class org.codehaus.jettison.mapped.MappedXMLStreamReader
-
- nextClean() - Method in class org.codehaus.jettison.json.JSONTokener
-
Get the next char in the string, skipping whitespace
and comments (slashslash, slashstar, and hash).
- nextString(char) - Method in class org.codehaus.jettison.json.JSONTokener
-
Return the characters up to the next close quote character.
- nextTag() - Method in class org.codehaus.jettison.AbstractXMLStreamReader
-
- nextTo(char) - Method in class org.codehaus.jettison.json.JSONTokener
-
Get the text up but not including the specified character or the
end of line, whichever comes first.
- nextTo(String) - Method in class org.codehaus.jettison.json.JSONTokener
-
Get the text up but not including one of the specified delimeter
characters or the end of line, whichever comes first.
- nextValue() - Method in class org.codehaus.jettison.json.JSONTokener
-
Get the next value.
- node - Variable in class org.codehaus.jettison.AbstractXMLStreamReader
-
- Node - Class in org.codehaus.jettison
-
- Node(Node, String, JSONObject, Convention) - Constructor for class org.codehaus.jettison.Node
-
- Node(String, Convention) - Constructor for class org.codehaus.jettison.Node
-
- Node(JSONObject) - Constructor for class org.codehaus.jettison.Node
-
- NULL - Static variable in class org.codehaus.jettison.json.JSONObject
-
It is sometimes more convenient and less ambiguous to have a
NULL
object than to use Java's null
value.
- numberToString(Number) - Static method in class org.codehaus.jettison.json.JSONObject
-
Produce a string from a Number.
- object() - Method in class org.codehaus.jettison.json.JSONWriter
-
Begin appending a new object.
- opt(int) - Method in class org.codehaus.jettison.json.JSONArray
-
Get the optional object value associated with an index.
- opt(String) - Method in class org.codehaus.jettison.json.JSONObject
-
Get an optional value associated with a key.
- optBoolean(int) - Method in class org.codehaus.jettison.json.JSONArray
-
Get the optional boolean value associated with an index.
- optBoolean(int, boolean) - Method in class org.codehaus.jettison.json.JSONArray
-
Get the optional boolean value associated with an index.
- optBoolean(String) - Method in class org.codehaus.jettison.json.JSONObject
-
Get an optional boolean associated with a key.
- optBoolean(String, boolean) - Method in class org.codehaus.jettison.json.JSONObject
-
Get an optional boolean associated with a key.
- optDouble(int) - Method in class org.codehaus.jettison.json.JSONArray
-
Get the optional double value associated with an index.
- optDouble(int, double) - Method in class org.codehaus.jettison.json.JSONArray
-
Get the optional double value associated with an index.
- optDouble(String) - Method in class org.codehaus.jettison.json.JSONObject
-
Get an optional double associated with a key,
or NaN if there is no such key or if its value is not a number.
- optDouble(String, double) - Method in class org.codehaus.jettison.json.JSONObject
-
Get an optional double associated with a key, or the
defaultValue if there is no such key or if its value is not a number.
- optInt(int) - Method in class org.codehaus.jettison.json.JSONArray
-
Get the optional int value associated with an index.
- optInt(int, int) - Method in class org.codehaus.jettison.json.JSONArray
-
Get the optional int value associated with an index.
- optInt(String) - Method in class org.codehaus.jettison.json.JSONObject
-
Get an optional int value associated with a key,
or zero if there is no such key or if the value is not a number.
- optInt(String, int) - Method in class org.codehaus.jettison.json.JSONObject
-
Get an optional int value associated with a key,
or the default if there is no such key or if the value is not a number.
- optJSONArray(int) - Method in class org.codehaus.jettison.json.JSONArray
-
Get the optional JSONArray associated with an index.
- optJSONArray(String) - Method in class org.codehaus.jettison.json.JSONObject
-
Get an optional JSONArray associated with a key.
- optJSONObject(int) - Method in class org.codehaus.jettison.json.JSONArray
-
Get the optional JSONObject associated with an index.
- optJSONObject(String) - Method in class org.codehaus.jettison.json.JSONObject
-
Get an optional JSONObject associated with a key.
- optLong(int) - Method in class org.codehaus.jettison.json.JSONArray
-
Get the optional long value associated with an index.
- optLong(int, long) - Method in class org.codehaus.jettison.json.JSONArray
-
Get the optional long value associated with an index.
- optLong(String) - Method in class org.codehaus.jettison.json.JSONObject
-
Get an optional long value associated with a key,
or zero if there is no such key or if the value is not a number.
- optLong(String, long) - Method in class org.codehaus.jettison.json.JSONObject
-
Get an optional long value associated with a key,
or the default if there is no such key or if the value is not a number.
- optString(int) - Method in class org.codehaus.jettison.json.JSONArray
-
Get the optional string value associated with an index.
- optString(int, String) - Method in class org.codehaus.jettison.json.JSONArray
-
Get the optional string associated with an index.
- optString(String) - Method in class org.codehaus.jettison.json.JSONObject
-
Get an optional string associated with a key.
- optString(String, String) - Method in class org.codehaus.jettison.json.JSONObject
-
Get an optional string associated with a key.
- org.codehaus.jettison - package org.codehaus.jettison
-
- org.codehaus.jettison.badgerfish - package org.codehaus.jettison.badgerfish
-
- org.codehaus.jettison.json - package org.codehaus.jettison.json
-
- org.codehaus.jettison.mapped - package org.codehaus.jettison.mapped
-
- org.codehaus.jettison.util - package org.codehaus.jettison.util
-
- parse(InputStream) - Method in class org.codehaus.jettison.AbstractDOMDocumentParser
-
- peek() - Method in class org.codehaus.jettison.util.FastStack
-
- pop() - Method in class org.codehaus.jettison.util.FastStack
-
- processAttributesAndNamespaces(Node, JSONObject) - Method in class org.codehaus.jettison.badgerfish.BadgerFishConvention
-
- processAttributesAndNamespaces(Node, JSONObject) - Method in interface org.codehaus.jettison.Convention
-
- processAttributesAndNamespaces(Node, JSONObject) - Method in class org.codehaus.jettison.mapped.MappedNamespaceConvention
-
- push(Object) - Method in class org.codehaus.jettison.util.FastStack
-
- put(boolean) - Method in class org.codehaus.jettison.json.JSONArray
-
Append a boolean value.
- put(Collection) - Method in class org.codehaus.jettison.json.JSONArray
-
Put a value in the JSONArray, where the value will be a
JSONArray which is produced from a Collection.
- put(double) - Method in class org.codehaus.jettison.json.JSONArray
-
Append a double value.
- put(int) - Method in class org.codehaus.jettison.json.JSONArray
-
Append an int value.
- put(long) - Method in class org.codehaus.jettison.json.JSONArray
-
Append an long value.
- put(Map) - Method in class org.codehaus.jettison.json.JSONArray
-
Put a value in the JSONArray, where the value will be a
JSONObject which is produced from a Map.
- put(Object) - Method in class org.codehaus.jettison.json.JSONArray
-
Append an object value.
- put(int, boolean) - Method in class org.codehaus.jettison.json.JSONArray
-
Put or replace a boolean value in the JSONArray.
- put(int, Collection) - Method in class org.codehaus.jettison.json.JSONArray
-
Put a value in the JSONArray, where the value will be a
JSONArray which is produced from a Collection.
- put(int, double) - Method in class org.codehaus.jettison.json.JSONArray
-
Put or replace a double value.
- put(int, int) - Method in class org.codehaus.jettison.json.JSONArray
-
Put or replace an int value.
- put(int, long) - Method in class org.codehaus.jettison.json.JSONArray
-
Put or replace a long value.
- put(int, Map) - Method in class org.codehaus.jettison.json.JSONArray
-
Put a value in the JSONArray, where the value will be a
JSONObject which is produced from a Map.
- put(int, Object) - Method in class org.codehaus.jettison.json.JSONArray
-
Put or replace an object value in the JSONArray.
- put(String, Collection) - Method in class org.codehaus.jettison.json.JSONObject
-
Put a key/value pair in the JSONObject, where the value will be a
JSONArray which is produced from a Collection.
- put(String, boolean) - Method in class org.codehaus.jettison.json.JSONObject
-
Put a key/boolean pair in the JSONObject.
- put(String, double) - Method in class org.codehaus.jettison.json.JSONObject
-
Put a key/double pair in the JSONObject.
- put(String, int) - Method in class org.codehaus.jettison.json.JSONObject
-
Put a key/int pair in the JSONObject.
- put(String, long) - Method in class org.codehaus.jettison.json.JSONObject
-
Put a key/long pair in the JSONObject.
- put(String, Map) - Method in class org.codehaus.jettison.json.JSONObject
-
Put a key/value pair in the JSONObject, where the value will be a
JSONObject which is produced from a Map.
- put(String, Object) - Method in class org.codehaus.jettison.json.JSONObject
-
Put a key/value pair in the JSONObject.
- putOpt(String, Object) - Method in class org.codehaus.jettison.json.JSONObject
-
Put a key/value pair in the JSONObject, but only if the
key and the value are both non-null.