@@ -21,52 +21,52 @@ package.
2121The package compiles on Java 1.6-1.8.
2222
2323
24- ` JSONObject.java ` : The ` JSONObject ` can parse text from a ` String ` or a ` JSONTokener `
24+ ** JSONObject.java** : The ` JSONObject ` can parse text from a ` String ` or a ` JSONTokener `
2525to produce a map-like object. The object provides methods for manipulating its
2626contents, and for producing a JSON compliant object serialization.
2727
28- ` JSONArray.java ` : The ` JSONArray ` can parse text from a String or a ` JSONTokener `
28+ ** JSONArray.java** : The ` JSONArray ` can parse text from a String or a ` JSONTokener `
2929to produce a vector-like object. The object provides methods for manipulating
3030its contents, and for producing a JSON compliant array serialization.
3131
32- ` JSONTokener.java ` : The ` JSONTokener ` breaks a text into a sequence of individual
32+ ** JSONTokener.java** : The ` JSONTokener ` breaks a text into a sequence of individual
3333tokens. It can be constructed from a ` String ` , ` Reader ` , or ` InputStream ` .
3434
35- ` JSONException.java ` : The ` JSONException ` is the standard exception type thrown
35+ ** JSONException.java** : The ` JSONException ` is the standard exception type thrown
3636by this package.
3737
38- ` JSONPointer.java ` : Implementation of
38+ ** JSONPointer.java** : Implementation of
3939[ JSON Pointer (RFC 6901)] ( https://tools.ietf.org/html/rfc6901 ) . Supports
4040JSON Pointers both in the form of string representation and URI fragment
4141representation.
4242
43- ` JSONString.java ` : The ` JSONString ` interface requires a ` toJSONString ` method,
43+ ** JSONString.java** : The ` JSONString ` interface requires a ` toJSONString ` method,
4444allowing an object to provide its own serialization.
4545
46- ` JSONStringer.java ` : The ` JSONStringer ` provides a convenient facility for
46+ ** JSONStringer.java** : The ` JSONStringer ` provides a convenient facility for
4747building JSON strings.
4848
49- ` JSONWriter.java ` : The ` JSONWriter ` provides a convenient facility for building
49+ ** JSONWriter.java** : The ` JSONWriter ` provides a convenient facility for building
5050JSON text through a writer.
5151
5252
53- ` CDL.java ` : ` CDL ` provides support for converting between JSON and comma
53+ ** CDL.java** : ` CDL ` provides support for converting between JSON and comma
5454delimited lists.
5555
56- ` Cookie.java ` : ` Cookie ` provides support for converting between JSON and cookies.
56+ ** Cookie.java** : ` Cookie ` provides support for converting between JSON and cookies.
5757
58- ` CookieList.java ` : ` CookieList ` provides support for converting between JSON and
58+ ** CookieList.java** : ` CookieList ` provides support for converting between JSON and
5959cookie lists.
6060
61- ` HTTP.java ` : ` HTTP ` provides support for converting between JSON and HTTP headers.
61+ ** HTTP.java** : ` HTTP ` provides support for converting between JSON and HTTP headers.
6262
63- ` HTTPTokener.java ` : ` HTTPTokener ` extends ` JSONTokener ` for parsing HTTP headers.
63+ ** HTTPTokener.java** : ` HTTPTokener ` extends ` JSONTokener ` for parsing HTTP headers.
6464
65- ` XML.java ` : ` XML ` provides support for converting between JSON and XML.
65+ ** XML.java** : ` XML ` provides support for converting between JSON and XML.
6666
67- ` JSONML.java ` : ` JSONML ` provides support for converting between JSONML and XML.
67+ ** JSONML.java** : ` JSONML ` provides support for converting between JSONML and XML.
6868
69- ` XMLTokener.java ` : ` XMLTokener ` extends JSONTokener for parsing XML text.
69+ ** XMLTokener.java** : ` XMLTokener ` extends JSONTokener for parsing XML text.
7070
7171Unit tests are maintained in a separate project. Contributing developers can test
7272JSON-java pull requests with the code in this project:
0 commit comments