Java com.google.gson TypeAdapter fields, constructors, methods, implement or subclass

Example usage for Java com.google.gson TypeAdapter fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.gson TypeAdapter.

The text is from its open source code.

Subclass

com.google.gson.TypeAdapter has subclasses.
Click this link to see all its subclasses.

Implementation

com.google.gson.TypeAdapter has the following implementations.
Click this link to see all its implementation.

Constructor

Method

TfromJsonTree(JsonElement jsonTree)
Converts jsonTree to a Java object.
TypeAdapternullSafe()
This wrapper method is used to make a type adapter null tolerant.
Tread(JsonReader in)
Reads one JSON value (an array, object, string, number, boolean or null) and converts it to a Java object.
JsonElementtoJsonTree(T value)
Converts value to a JSON tree.
voidwrite(JsonWriter out, T value)
Writes one JSON value (an array, object, string, number, boolean or null) for value .