Package | Description |
---|---|
com.rayrobdod.javaScriptObjectNotation.javaCollection.parseListeners | |
com.rayrobdod.javaScriptObjectNotation.parser |
These are the specific operations related to processing JSON files.
|
com.rayrobdod.javaScriptObjectNotation.parser.listeners |
These are classes that implement
JSONParseListener
and do something that seems like a useful, common ability. |
Modifier and Type | Class and Description |
---|---|
class |
NextJSONArrayParseListener |
class |
NextJSONObjectParseListener |
Modifier and Type | Class and Description |
---|---|
class |
JSONParseAdapter
This is an Adapter for JSONParseListener.
|
Modifier and Type | Method and Description |
---|---|
static void |
JSONParser.parse(JSONParseListener l,
Reader reader)
Parses the specified Reader's contents with the specified ParseListener.
|
static void |
JSONParser.parse(JSONParseListener l,
Reader reader,
int skipChars)
This starts by firing l's
started()
method. |
static void |
JSONParser.parse(JSONParseListener l,
String s)
Parses a string to a JSONParseListener
|
static void |
JSONParser.parse(JSONParseListener l,
String s,
int skipChars)
Parses the specified String's contents with the specified ParseListener
after skipping the specified number of characters.
|
Modifier and Type | Class and Description |
---|---|
class |
GetArrayElement
A JSONParseListener that extracts the nth item from an array
|
class |
GetElementBounds
This JSONParseListener obtains the bounds (the comma indexes) of an element
in a JSON item.
|
class |
GetSize
This will determine the size of a JSONArray or JSONObject
when used in a
JSONParser . |
class |
JSONArrayValidator
This is a JSONParseListener that when run through the JSONParser will be a strict
validator for a JSONArray.
|
class |
JSONObjectValidator
This is a JSONParseListener that when run through the JSONParser will be a strict
validator for a JSONObject.
|
class |
Minifier
A
JSONParseListener
that will write a minified version of the parsed JSONObject or JSONArray |
class |
ToArrayList<E>
This when run through the JSONParser will result in an
ArrayList . |
class |
ToHashMap<E>
This when run through the JSONParser will result in an
HashMap . |
class |
ToScalaCollection<A>
Parses a JSON entity into a Scala collection.
|