Package com.invirgance.convirgance.json
package com.invirgance.convirgance.json
Provides classes for reading, writing, and manipulating JSON data. This package 
 supports standard JSON data types and formatting according to the JSON 
 specification.
 
The implementation is similar to the official
The implementation is similar to the official
org.json package
 with the key improvement that the implementation plugs into the Java
 Collections Framework (JCF). JSONObject implements Map and 
 JSONArray implements List. This provides greater flexibility 
 when working with parsed JSON data and makes the objects compatible with any 
 APIs or frameworks that understands Maps and Lists.
- 
ClassesClassDescriptionJSONArray<T>A List implementation that supports JSON array dataA JSON object implementation that represents a collection of key-value pairs.Supports parsing a Stream containing JSON, processing values as their relevant data type.Serializes data into JSON format and writes it to an output stream