Package | Description |
---|---|
com.rayrobdod.binaryJSON.parser |
These are the specific operations related to processing BSON files.
|
com.rayrobdod.binaryJSON.parser.listeners |
These are classes that implement
BSONParseListener
and do something that seems like a useful, common ability. |
Modifier and Type | Method and Description |
---|---|
static void |
BSONParser.parse(BSONParseListener l,
DataInput input)
This starts by firing l's
started()
method. |
Modifier and Type | Class and Description |
---|---|
class |
GetSize
This will determine the size of a BSONArray or BSONObject
when used in a
JSONParser . |
class |
ToArrayList<E>
This when run through the BSONParser will result in an
ArrayList . |
class |
ToHashMap<E>
This when run through the BSONParser will result in an
HashMap . |
class |
ToScalaCollection<A>
Parses a BSON entity into a Scala collection.
|