Package | Description |
---|---|
com.rayrobdod.binaryJSON.parser.decoders |
These are classes that either implement
BSONDecoder or have a static decode method. |
com.rayrobdod.binaryJSON.parser.listeners |
These are classes that implement
BSONParseListener
and do something that seems like a useful, common ability. |
Modifier and Type | Class and Description |
---|---|
class |
SkipAllBSONDecoder
Skips all elements, ignoring them.
|
class |
ToJavaCollectionBSONDecoder
This takes a String that is properly JSONEncoded and turns it into a Java Collections object
|
class |
ToScalaCollectionBSONDecoder
This takes a String that is properly JSONEncoded and turns it into a Scala Collections object
|
class |
ToScalaCollectionBSONDecoder$
This takes a String that is properly JSONEncoded and turns it into a Scala Collections object
|
Modifier and Type | Method and Description |
---|---|
<A> ToScalaCollection<A> |
ToScalaCollection$.apply(BSONDecoder<A> decoder) |
static <A> ToScalaCollection<A> |
ToScalaCollection.apply(BSONDecoder<A> decoder) |
static <E> ToArrayList<E> |
ToArrayList.apply(BSONDecoder<E> decoder) |
static <E> ToHashMap<E> |
ToHashMap.apply(BSONDecoder<E> decoder) |
Constructor and Description |
---|
ToArrayList(BSONDecoder<E> decoder) |
ToHashMap(BSONDecoder<E> decoder) |
ToScalaCollection(BSONDecoder<A> decoder) |