JSON document class. This class defines the representation of each of the JSON types and provides methods to parse and create JSON instances from various sources. All JSON types extend Value. The following table documents which class to use when representing each of the JSON types.
JSON Type | Class |
Object | JSON.Object |
Array | JSON.Array |
String | JSON.String |
Numeric | JSON.Numeric |
True | JSON.TRUE |
False | JSON.FALSE |
Null | JSON.NULL |
@author openecho
@version 1.0.0