List of usage examples for com.google.gson.stream JsonReader subclass-usage
From source file bind.JsonTreeReader.java
/**
* This reader walks the elements of a JsonElement as if it was coming from a
* character stream.
*
* @author Jesse Wilson
*/
From source file ddt.dtool.util.JsonReaderExt.java
/** Utility extensions to JsonReader */ public class JsonReaderExt extends JsonReader { protected final JsonReaderExt jsonReader = this; public JsonReaderExt(Reader in) {
From source file json.tests.reader.JSONStreamReader.java
/** * A custom JSON reader, which reads only a set of elements, from a JSON stream. */ public class JSONStreamReader extends JsonReader { // Name of the current element, if its a 'NAME' token
From source file org.immutables.gson.stream.JsonParserReader.java
/**
* {@link JsonReader} impementation backed by Jackson's {@link JsonParser}.
* Provides measurable JSON parsing improvements over Gson's native implementation.
* Error reporting might differ, however.
*/
@NotThreadSafe
From source file org.immutables.mongo.bson4gson.BsonReader.java
/**
* Adapter of {@link JsonReader GSON Reader} reading directly from
* <a href="http://bsonspec.org/">BSON encoded</a> documents.
* It delegates most of the calls to {@link org.bson.BsonReader} which understands binary JSON
* representation (default wire protocol
* between mongo server and client). This class allows to instantiate immutable objects directly
From source file org.openhab.binding.mqtt.generic.tools.JsonReaderDelegate.java
/**
* JsonReader delegate.
*
* This class allows to overwrite parts of the {@link JsonReader} functionality
*
* @author Jochen Klein - Initial contribution
From source file org.openhab.binding.mqtt.tools.JsonReaderDelegate.java
/**
* JsonReader delegate.
*
* This class allows to overwrite parts of the {@link JsonReader} functionality
*
* @author Jochen Klein - Initial contribution