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.tournament.MatchesWon.java

@SuppressWarnings("javadoc")
public class MatchesWon implements JsonDeserializer<MatchesWon> {
    public volatile String blueTeamStr;
    public volatile long blueTeam;
    public volatile String redTeamStr;
    public volatile long redTeam;

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

@SuppressWarnings("javadoc")
public class Score implements JsonDeserializer<Score> {
    public volatile double redTeam;
    public volatile double blueTeam;

    public Score() {

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

@SuppressWarnings("javadoc")
public class Series implements JsonDeserializer<Series> {
    public volatile String name;
    public volatile String type;
    public volatile ExternalRef seriesUrl;
    public final List<TeamStats> teamStats;

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

@SuppressWarnings("javadoc")
public class SeriesElement implements JsonDeserializer<SeriesElement> {
    public volatile long pageCount;
    public volatile String pageCountStr;
    public volatile String totalCountStr;
    public volatile long totalCount;

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

@SuppressWarnings("javadoc")
public class Stats implements JsonDeserializer<Stats> {
    public volatile ExternalRef pilot;

    public Stats() {
    }

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

@SuppressWarnings("javadoc")
public class Structure implements JsonDeserializer<Structure> {
    public volatile ExternalRef outgoingWinner;
    public volatile ExternalRef outgoingLoser;
    public volatile ExternalRef incomingRed;
    public volatile ExternalRef incomingBlue;

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

@SuppressWarnings("javadoc")
public class Team implements JsonDeserializer<Team> {
    public volatile String teamUrl;
    public volatile String teamName;

    public Team() {

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

@SuppressWarnings("javadoc")
public class TeamInfo implements JsonDeserializer<TeamInfo> {
    public volatile long length;
    public volatile String lengthStr;
    public volatile TeamWrapper redTeam;
    public volatile TeamWrapper blueTeam;

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

@SuppressWarnings("javadoc")
public class TeamStats implements JsonDeserializer<TeamStats> {
    public volatile ExternalRef matches;
    public volatile String teamsUrl;
    public volatile String name;

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

@SuppressWarnings("javadoc")
public class TeamWrapper implements JsonDeserializer<TeamWrapper> {
    public volatile boolean decided;
    public volatile boolean bye;
    public volatile Team team;