org.openhab.binding.robonect.internal.model.TimerModeDeserializer.java Source code

Java tutorial

Introduction

Here is the source code for org.openhab.binding.robonect.internal.model.TimerModeDeserializer.java

Source

/**
 * Copyright (c) 2010-2019 Contributors to the openHAB project
 *
 * See the NOTICE file(s) distributed with this work for additional
 * information.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package org.openhab.binding.robonect.internal.model;

import java.lang.reflect.Type;

import com.google.gson.JsonDeserializationContext;
import com.google.gson.JsonDeserializer;
import com.google.gson.JsonElement;
import com.google.gson.JsonParseException;

/**
 * Gson deserializer for deserializing timer mode values to the corresponding enum.
 *
 * @author Marco Meyer - Initial contribution
 */
public class TimerModeDeserializer implements JsonDeserializer<Timer.TimerMode> {

    @Override
    public Timer.TimerMode deserialize(JsonElement jsonElement, Type type,
            JsonDeserializationContext jsonDeserializationContext) throws JsonParseException {
        int code = jsonElement.getAsInt();
        return Timer.TimerMode.fromCode(code);
    }
}