Skip navigation links
A B C D E F G H I J K L M N O P Q R S T U V W X 

J

join(String) - Method in class org.json.JSONArray
Make a string from the contents of this JSONArray.
JSONAppendable - Interface in org.json
The JSONAppendable interface provides a appendJSON() method so that a class can change the behavior of JSONObject.toString(), JSONArray.toString(), and JSONWriter.value(Object).
jsonAppendableValue(JSONAppendable, Appendable) - Method in class org.json.write.NullStructureWriter
Throws a JSONException to indicate this writer can't write a value.
jsonAppendableValue(JSONAppendable, Appendable) - Method in class org.json.write.SimpleStructureWriter
Write a JSONAppendable value to the given Appendable.
jsonAppendableValue(JSONAppendable, Appendable) - Method in interface org.json.write.StructureWriter
Write a JSONAppendable value to the given Appendable.
JSONArray - Class in org.json
A JSONArray is an ordered sequence of values.
JSONArray() - Constructor for class org.json.JSONArray
Construct an empty JSONArray.
JSONArray(JSONTokener) - Constructor for class org.json.JSONArray
Construct a JSONArray from a JSONTokener.
JSONArray(String) - Constructor for class org.json.JSONArray
Construct a JSONArray from a source JSON text.
JSONArray(Iterable<?>) - Constructor for class org.json.JSONArray
Construct a JSONArray from an Iterable.
JSONArray(Object) - Constructor for class org.json.JSONArray
Construct a JSONArray from an array
JSONCollector - Class in org.json.stream
Structure collector that creates JSONObject, JSONArray, and JSONObject.NULL instances.
JSONException - Exception in org.json
The JSONException is thrown by the JSON.org classes when things are amiss.
JSONException(String) - Constructor for exception org.json.JSONException
Constructs a JSONException with an explanatory message.
JSONException(String, Throwable) - Constructor for exception org.json.JSONException
Constructs a JSONException with an explanatory message and cause.
JSONException(Throwable) - Constructor for exception org.json.JSONException
Constructs a new JSONException with the specified cause.
JSONLexer - Class in org.json.stream
A JSONLexer takes a source stream and extracts characters and tokens from it.
JSONLexer(Reader) - Constructor for class org.json.stream.JSONLexer
Construct a JSONLexer from a Reader.
JSONLexer(InputStream, Charset) - Constructor for class org.json.stream.JSONLexer
Construct a JSONLexer from an InputStream and a supplied Charset.
JSONLexer(String) - Constructor for class org.json.stream.JSONLexer
Construct a JSONLexer from a String.
JSONLexer.Token - Enum in org.json.stream
Tokens that can be identified with at most one character lookahead.
JSONLimitBuilder - Class in org.json.stream
Builds a JSON object model using events supplied from JSONLimitStreamReader, using secure principles derived from XML parsers.
JSONLimitStreamReader - Class in org.json.stream
Reads a JSON document as a stream of JSON events, using secure principles derived from XML parsers.
JSONLimitStreamReader(Reader) - Constructor for class org.json.stream.JSONLimitStreamReader
Construct a JSONStreamReader from a Reader.
JSONLimitStreamReader(InputStream, Charset) - Constructor for class org.json.stream.JSONLimitStreamReader
Construct a JSONStreamReader from an InputStream and a supplied Charset.
JSONLimitStreamReader(String) - Constructor for class org.json.stream.JSONLimitStreamReader
Construct a JSONStreamReader from a String.
JSONML - Class in org.json
This provides static methods to convert an XML text into a JSONArray or JSONObject, and to covert a JSONArray or JSONObject into an XML text using the JsonML transform.
JSONML() - Constructor for class org.json.JSONML
 
JSONObject - Class in org.json
A JSONObject is an unordered collection of name/value pairs.
JSONObject() - Constructor for class org.json.JSONObject
Construct an empty JSONObject.
JSONObject(JSONObject, String[]) - Constructor for class org.json.JSONObject
Construct a JSONObject from a subset of another JSONObject.
JSONObject(JSONTokener) - Constructor for class org.json.JSONObject
Construct a JSONObject from a JSONTokener.
JSONObject(Map<?, ?>) - Constructor for class org.json.JSONObject
Construct a JSONObject from a Map.
JSONObject(Object) - Constructor for class org.json.JSONObject
Construct a JSONObject from an Object using bean getters.
JSONObject(Object, String[]) - Constructor for class org.json.JSONObject
Construct a JSONObject from an Object, using reflection to find the public members.
JSONObject(String) - Constructor for class org.json.JSONObject
Construct a JSONObject from a source JSON text string.
JSONObject(String, Locale) - Constructor for class org.json.JSONObject
Construct a JSONObject from a ResourceBundle.
JSONObjectBuilder - Class in org.json.stream
Builds a JSON object model using events supplied from JSONStreamReader.
JSONParseException - Exception in org.json
Extends JSONException by providing parameterised information about the line, column, and character where the syntax error occurred.
JSONParseException(String, ParsePosition) - Constructor for exception org.json.JSONParseException
Constructs a JSONParseException with an explanatory message and parse position.
JSONParseException(String, Throwable, ParsePosition) - Constructor for exception org.json.JSONParseException
Constructs a JSONParseException with an explanatory message, cause, and parse position.
JSONParseException(Throwable, ParsePosition) - Constructor for exception org.json.JSONParseException
Constructs a new JSONParseException with the specified cause and parse position.
JSONPointer - Class in org.json
A JSON Pointer is a simple query language defined for JSON documents by RFC 6901.
JSONPointer(String) - Constructor for class org.json.JSONPointer
Pre-parses and initializes a new JSONPointer instance.
JSONPointer(List<String>) - Constructor for class org.json.JSONPointer
 
JSONPointer.Builder - Class in org.json
This class allows the user to build a JSONPointer in steps, using exactly one segment in each step.
JSONPointerException - Exception in org.json
The JSONPointerException is thrown by JSONPointer if an error occurs during evaluating a pointer.
JSONPointerException(String) - Constructor for exception org.json.JSONPointerException
 
JSONPointerException(String, Throwable) - Constructor for exception org.json.JSONPointerException
 
JSONPointerUtils - Class in org.json.util
Utilities for conversion an iterable of StructureIdentifier objects into a JSON Pointer expression.
JSONStreamReader - Class in org.json.stream
Reads a JSON document as a stream of JSON events.
JSONStreamReader(Reader) - Constructor for class org.json.stream.JSONStreamReader
Construct a JSONStreamReader from a Reader.
JSONStreamReader(InputStream, Charset) - Constructor for class org.json.stream.JSONStreamReader
Construct a JSONStreamReader from an InputStream and a supplied Charset.
JSONStreamReader(String) - Constructor for class org.json.stream.JSONStreamReader
Construct a JSONStreamReader from a String.
JSONStreamReader.ParseState - Enum in org.json.stream
States of the internal state machine.
JSONStrictTokener - Class in org.json
A JSONStrictTokener takes a source stream and extracts characters and tokens from it.
JSONStrictTokener(Reader) - Constructor for class org.json.JSONStrictTokener
Construct a JSONStrictTokener from a Reader.
JSONStrictTokener(InputStream, Charset) - Constructor for class org.json.JSONStrictTokener
Construct a JSONStrictTokener from an InputStream and supplied Charset.
JSONStrictTokener(String) - Constructor for class org.json.JSONStrictTokener
Construct a JSONStrictTokener from a string.
JSONString - Interface in org.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.json
JSONStringer provides a quick and convenient way of producing JSON text.
JSONStringer() - Constructor for class org.json.JSONStringer
Make a fresh JSONStringer.
JSONStringer(boolean) - Constructor for class org.json.JSONStringer
Make a fresh JSONStringer.
JSONStringer(int) - Constructor for class org.json.JSONStringer
Make a fresh JSONStringer.
JSONStringer(int, int) - Constructor for class org.json.JSONStringer
Make a fresh JSONStringer.
JSONStringer(int, int, boolean) - Constructor for class org.json.JSONStringer
Make a fresh JSONStringer.
jsonStringValue(JSONString, Appendable) - Method in class org.json.write.NullStructureWriter
Throws a JSONException to indicate this writer can't write a value.
jsonStringValue(JSONString, Appendable) - Method in class org.json.write.SimpleStructureWriter
Write a JSONString value to the given Appendable.
jsonStringValue(JSONString, Appendable) - Method in interface org.json.write.StructureWriter
Write a JSONString value to the given Appendable.
JSONTokener - Class in org.json
A JSONTokener takes a source string and extracts characters and tokens from it.
JSONTokener(Reader) - Constructor for class org.json.JSONTokener
Construct a JSONTokener from a Reader.
JSONTokener(InputStream) - Constructor for class org.json.JSONTokener
Construct a JSONTokener from an InputStream, using the default character set.
JSONTokener(InputStream, Charset) - Constructor for class org.json.JSONTokener
Construct a JSONTokener from an InputStream and supplied Charset.
JSONTokener(String) - Constructor for class org.json.JSONTokener
Construct a JSONTokener from a string.
JSONTokener.JSONToken - Enum in org.json
Tokens that can be identified with at most one character lookahead.
JSONWriter - Class in org.json
JSONWriter provides a quick and convenient way of producing JSON text.
JSONWriter(Appendable) - Constructor for class org.json.JSONWriter
Make a fresh JSONWriter.
JSONWriter(Appendable, boolean) - Constructor for class org.json.JSONWriter
Make a fresh JSONWriter.
JSONWriter(Appendable, int) - Constructor for class org.json.JSONWriter
Make a fresh JSONWriter with the given indent factor.
JSONWriter(Appendable, int, int) - Constructor for class org.json.JSONWriter
Make a fresh JSONWriter with the given indent factor and initial indentation.
JSONWriter(Appendable, int, int, boolean) - Constructor for class org.json.JSONWriter
Make a fresh JSONWriter with the given indent factor and initial indentation.
JSONWriterException - Exception in org.json
JSONWriterException is thrown by JSONWriter to include location information as a JSON Pointer expression.
JSONWriterException(String, String) - Constructor for exception org.json.JSONWriterException
 
JSONWriterException(String, Throwable, String) - Constructor for exception org.json.JSONWriterException
 
JSONWriterException(Throwable, String) - Constructor for exception org.json.JSONWriterException
 
A B C D E F G H I J K L M N O P Q R S T U V W X 
Skip navigation links