Example usage for com.google.gson JsonDeserializer interface-usage

List of usage examples for com.google.gson JsonDeserializer interface-usage

Introduction

In this page you can find the example usage for com.google.gson JsonDeserializer interface-usage.

Usage

From source file com.ccc.crest.core.cache.crest.schema.option.CcpType.java

@SuppressWarnings("javadoc")
public class CcpType implements JsonDeserializer<CcpType> {
    public volatile String name;
    public volatile String description;
    public volatile boolean optional;
    public final List<String> extraData;

From source file com.ccc.crest.core.cache.crest.schema.option.ContentType.java

@SuppressWarnings("javadoc")
public class ContentType implements JsonDeserializer<ContentType> {
    public volatile String name;
    public volatile String jsonDumpOfStructure;
    public volatile CcpType ccpType;

From source file com.ccc.crest.core.cache.crest.schema.option.CrestOptions.java

@SuppressWarnings("javadoc")
public class CrestOptions extends BaseEveData implements JsonDeserializer<CrestOptions> {
    private static final long serialVersionUID = -2711682230241156568L;
    private static final AtomicBoolean continueRefresh = new AtomicBoolean(false);
    public static final String PostBase = null;
    public static final String GetBase = "application/vnd.ccp.eve.Options";

From source file com.ccc.crest.core.cache.crest.schema.option.Representation.java

@SuppressWarnings("javadoc")
public class Representation implements JsonDeserializer<Representation> {
    public volatile String versionStr;
    public volatile AcceptType acceptType;
    public volatile String verb;
    public volatile long version;

From source file com.ccc.crest.core.cache.crest.schema.option.Representations.java

@SuppressWarnings("javadoc")
public class Representations extends BaseEveData implements JsonDeserializer<Representations> {
    private static final long serialVersionUID = 546207299369351871L;
    public final List<Representation> representations;

    public Representations() {

From source file com.ccc.crest.core.cache.crest.sovereignty.SovCampaignsCollection.java

@SuppressWarnings("javadoc")
public class SovCampaignsCollection extends BaseEveData implements JsonDeserializer<SovCampaignsCollection> {
    private static final long serialVersionUID = -2711682230241156568L;
    private static final AtomicBoolean continueRefresh = new AtomicBoolean(true);
    public static final String PostBase = null;
    public static final String GetBase = "application/vnd.ccp.eve.SovCampaignsCollection";

From source file com.ccc.crest.core.cache.crest.sovereignty.SovStructureCollection.java

@SuppressWarnings("javadoc")
public class SovStructureCollection extends BaseEveData implements JsonDeserializer<SovStructureCollection> {
    private static final long serialVersionUID = -2711682230241156568L;
    private static final AtomicBoolean continueRefresh = new AtomicBoolean(true);
    public static final String PostBase = null;
    public static final String GetBase = "application/vnd.ccp.eve.SovStructureCollection";

From source file com.ccc.crest.core.cache.crest.tournament.Ban.java

@SuppressWarnings("javadoc")
public class Ban implements JsonDeserializer<Ban> {
    public volatile List<String> typeBans;
    public volatile ExternalRef bannedBy;

    public Ban() {

From source file com.ccc.crest.core.cache.crest.tournament.Bans.java

@SuppressWarnings("javadoc")
public class Bans implements JsonDeserializer<Bans> {
    public volatile ExternalRef self;
    public final List<Ban> redTeam;
    public final List<Ban> blueTeam;

From source file com.ccc.crest.core.cache.crest.tournament.Matches.java

@SuppressWarnings("javadoc")
public class Matches implements JsonDeserializer<Matches> {
    public volatile ExternalRef winner;
    public volatile Stats stats;
    public volatile Team redTeam;
    public volatile Bans bans;