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

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

Introduction

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

Usage

From source file org.mbari.vars.annotation.gson.ImageReferenceCreator.java

/**
 * @author Brian Schlining
 * @since 2017-09-20T14:14:00
 */
public class ImageReferenceCreator implements InstanceCreator<ImageReference> {
    @Override

From source file org.openhab.binding.unifi.internal.api.util.UniFiClientInstanceCreator.java

/**
 * The {@link UniFiClientInstanceCreator} creates instances of {@link UniFiClient}s during the JSON unmarshalling of
 * controller responses.
 *
 * @author Matthew Bowman - Initial contribution
 */

From source file org.openhab.binding.unifi.internal.api.util.UniFiDeviceInstanceCreator.java

/**
 *
 * The {@link UniFiDeviceInstanceCreator} creates instances of {@link UniFiDevice}s during the JSON unmarshalling of
 * controller responses.
 *
 * @author Matthew Bowman - Initial contribution

From source file org.openhab.binding.unifi.internal.api.util.UniFiSiteInstanceCreator.java

/**
 *
 * The {@link UniFiSiteInstanceCreator} creates instances of {@link UniFiSite}s during the JSON unmarshalling of
 * controller responses.
 *
 * @author Matthew Bowman - Initial contribution

From source file org.openhab.core.automation.internal.parser.gson.ActionInstanceCreator.java

/**
 * This class creates {@link ActionType} instances.
 *
 * @author Ana Dimova - Initial Contribution
 *
 */

From source file org.openhab.core.automation.internal.parser.gson.ConditionInstanceCreator.java

/**
 * This class creates {@link ConditionType} instances.
 *
 * @author Ana Dimova - Initial Contribution
 *
 */

From source file org.openhab.core.automation.internal.parser.gson.TriggerInstanceCreator.java

/**
 * This class creates {@link TriggerType} instances.
 *
 * @author Ana Dimova - Initial Contribution
 *
 */

From source file org.pascani.dsl.dbmapper.typeadapters.UUIDInstanceCreator.java

/**
 * Custom Gson instance creator for the UUID class
 * 
 * @author Miguel Jimnez - Initial contribution and API
 */
public class UUIDInstanceCreator implements InstanceCreator<UUID> {

From source file org.rapla.rest.gwtjsonrpc.server.CallDeserializer.java

final class CallDeserializer implements JsonDeserializer<ActiveCall>, InstanceCreator<ActiveCall> {
    private final ActiveCall req;
    private final JsonServlet server;

    CallDeserializer(final ActiveCall call, final JsonServlet jsonServlet) {
        req = call;

From source file org.rapla.server.jsonrpc.CallDeserializer.java

final class CallDeserializer<CallType extends ActiveCall>
        implements JsonDeserializer<CallType>, InstanceCreator<CallType> {
    private final CallType req;
    private final JsonServlet<? extends ActiveCall> server;

    CallDeserializer(final CallType call, final JsonServlet<CallType> jsonServlet) {