@@ -20,52 +20,52 @@ package.
2020The package compiles on Java 1.6-1.8.
2121
2222
23- JSONObject.java: The JSONObject can parse text from a String or a JSONTokener
23+ ` JSONObject.java ` : The ` JSONObject ` can parse text from a ` String ` or a ` JSONTokener `
2424to produce a map-like object. The object provides methods for manipulating its
2525contents, and for producing a JSON compliant object serialization.
2626
27- JSONArray.java: The JSONArray can parse text from a String or a JSONTokener
27+ ` JSONArray.java ` : The ` JSONArray ` can parse text from a String or a ` JSONTokener `
2828to produce a vector-like object. The object provides methods for manipulating
2929its contents, and for producing a JSON compliant array serialization.
3030
31- JSONTokener.java: The JSONTokener breaks a text into a sequence of individual
32- tokens. It can be constructed from a String, Reader, or InputStream.
31+ ` JSONTokener.java ` : The ` JSONTokener ` breaks a text into a sequence of individual
32+ tokens. It can be constructed from a ` String ` , ` Reader ` , or ` InputStream ` .
3333
34- JSONException.java: The JSONException is the standard exception type thrown
34+ ` JSONException.java ` : The ` JSONException ` is the standard exception type thrown
3535by this package.
3636
37- JSONPointer.java: Implementation of
37+ ` JSONPointer.java ` : Implementation of
3838[ JSON Pointer (RFC 6901)] ( https://tools.ietf.org/html/rfc6901 ) . Supports
3939JSON Pointers both in the form of string representation and URI fragment
4040representation.
4141
42- JSONString.java: The JSONString interface requires a toJSONString method,
42+ ` JSONString.java ` : The ` JSONString ` interface requires a ` toJSONString ` method,
4343allowing an object to provide its own serialization.
4444
45- JSONStringer.java: The JSONStringer provides a convenient facility for
45+ ` JSONStringer.java ` : The ` JSONStringer ` provides a convenient facility for
4646building JSON strings.
4747
48- JSONWriter.java: The JSONWriter provides a convenient facility for building
48+ ` JSONWriter.java ` : The ` JSONWriter ` provides a convenient facility for building
4949JSON text through a writer.
5050
5151
52- CDL.java: CDL provides support for converting between JSON and comma
52+ ` CDL.java ` : ` CDL ` provides support for converting between JSON and comma
5353delimited lists.
5454
55- Cookie.java: Cookie provides support for converting between JSON and cookies.
55+ ` Cookie.java ` : ` Cookie ` provides support for converting between JSON and cookies.
5656
57- CookieList.java: CookieList provides support for converting between JSON and
57+ ` CookieList.java ` : ` CookieList ` provides support for converting between JSON and
5858cookie lists.
5959
60- HTTP.java: HTTP provides support for converting between JSON and HTTP headers.
60+ ` HTTP.java ` : ` HTTP ` provides support for converting between JSON and HTTP headers.
6161
62- HTTPTokener.java: HTTPTokener extends JSONTokener for parsing HTTP headers.
62+ ` HTTPTokener.java ` : ` HTTPTokener ` extends ` JSONTokener ` for parsing HTTP headers.
6363
64- XML.java: XML provides support for converting between JSON and XML.
64+ ` XML.java ` : ` XML ` provides support for converting between JSON and XML.
6565
66- JSONML.java: JSONML provides support for converting between JSONML and XML.
66+ ` JSONML.java ` : ` JSONML ` provides support for converting between JSONML and XML.
6767
68- XMLTokener.java: XMLTokener extends JSONTokener for parsing XML text.
68+ ` XMLTokener.java ` : ` XMLTokener ` extends JSONTokener for parsing XML text.
6969
7070Unit tests are maintained in a separate project. Contributing developers can test
7171JSON-java pull requests with the code in this project:
0 commit comments