]> git.basschouten.com Git - openhab-addons.git/blob
dccf8e033ccecb4d9fd4fb0341f81fb7889dd1dc
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
7  * This program and the accompanying materials are made available under the
8  * terms of the Eclipse Public License 2.0 which is available at
9  * http://www.eclipse.org/legal/epl-2.0
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.mielecloud.internal.webservice.api.json;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16
17 import com.google.gson.annotations.SerializedName;
18
19 /**
20  * Represents a process action.
21  *
22  * @author Roland Edelhoff - Initial contribution
23  */
24 @NonNullByDefault
25 public enum ProcessAction {
26     /**
27      * {@StateType} for unknown states.
28      */
29     UNKNOWN,
30
31     @SerializedName("1")
32     START,
33
34     @SerializedName("2")
35     STOP,
36
37     @SerializedName("3")
38     PAUSE,
39
40     @SerializedName("4")
41     START_SUPERFREEZING,
42
43     @SerializedName("5")
44     STOP_SUPERFREEZING,
45
46     @SerializedName("6")
47     START_SUPERCOOLING,
48
49     @SerializedName("7")
50     STOP_SUPERCOOLING,
51 }