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.corporation.Corporation.java

@SuppressWarnings("javadoc")
public class Corporation implements PagedItem, JsonDeserializer<Corporation> {
    public volatile long id;
    public volatile String ticker;
    public volatile String name;
    public volatile String description;

From source file com.ccc.crest.core.cache.crest.corporation.Corporations.java

@SuppressWarnings("javadoc")
public class Corporations extends Paging implements JsonDeserializer<Corporations> {
    public Corporations() {
    }

    public Corporations(PagingData pagingData, List<CorporationData> list) {

From source file com.ccc.crest.core.cache.crest.corporation.CorporationStructureCollection.java

@SuppressWarnings("javadoc")
public class CorporationStructureCollection extends BaseEveData
        implements JsonDeserializer<CorporationStructureCollection> {
    private static final long serialVersionUID = -2711682230241156568L;
    private static final AtomicBoolean continueRefresh = new AtomicBoolean(true);
    public static final String PostBase = null;

From source file com.ccc.crest.core.cache.crest.corporation.Headquarters.java

@SuppressWarnings("javadoc")
public class Headquarters implements JsonDeserializer<Headquarters> {
    public volatile String name;
    public volatile String stationUrl;

    public Headquarters() {

From source file com.ccc.crest.core.cache.crest.corporation.NpcCorporationCollection.java

@SuppressWarnings("javadoc")
public class NpcCorporationCollection extends BaseEveData implements JsonDeserializer<NpcCorporationCollection> {
    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.NPCCorporationsCollection";

From source file com.ccc.crest.core.cache.crest.dogma.DogmaAttribute.java

@SuppressWarnings("javadoc")
public class DogmaAttribute implements PagedItem, JsonDeserializer<DogmaAttribute> {
    public volatile long id;
    public volatile String ticker;
    public volatile String name;
    public volatile String description;

From source file com.ccc.crest.core.cache.crest.dogma.DogmaAttributeCollection.java

@SuppressWarnings("javadoc")
public class DogmaAttributeCollection extends BaseEveData implements JsonDeserializer<DogmaAttributeCollection> {
    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.DogmaAttributeCollection";

From source file com.ccc.crest.core.cache.crest.dogma.DogmaAttributes.java

@SuppressWarnings("javadoc")
public class DogmaAttributes extends Paging implements JsonDeserializer<DogmaAttributes> {
    public DogmaAttributes() {
    }

    public DogmaAttributes(PagingData pagingData, List<DogmaAttributeData> list) {

From source file com.ccc.crest.core.cache.crest.dogma.DogmaEffectCollection.java

@SuppressWarnings("javadoc")
public class DogmaEffectCollection extends BaseEveData implements JsonDeserializer<DogmaEffectCollection> {
    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.DogmaEffectCollection";

From source file com.ccc.crest.core.cache.crest.ExternalRef.java

@SuppressWarnings("javadoc")
public class ExternalRef implements JsonDeserializer<ExternalRef> {
    public volatile String url;
    public volatile String linkType;

    public ExternalRef() {