2 * Copyright (c) 2010-2023 Contributors to the openHAB project
4 * See the NOTICE file(s) distributed with this work for additional
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
11 * SPDX-License-Identifier: EPL-2.0
13 package org.openhab.io.imperihome.internal.model.param;
16 * Parameter type enumeration. Contains the ISS API parameter key string.
18 * @author Pepijn de Geus - Initial contribution
20 public enum ParamType {
22 DEFAULT_ICON("defaultIcon"),
23 GENERIC_VALUE("Value"),
24 TEMPERATURE_VALUE("Value"),
25 TEMPERATURE_DUAL("temp"),
26 LUMINOSITY_VALUE("Value"),
27 HYGROMETRY_DUAL("hygro"),
28 HYGROMETRY_VALUE("Value"),
30 PRESSURE_VALUE("Value"),
37 MULTISWITCH_VALUE("Value"),
41 WHITE_CHANNEL("whitechannel"),
48 LAST_TRIP("lasttrip"),
49 ACCUMULATION("Accumulation"),
51 DIRECTION("Direction"),
52 STOPPABLE("stopable"),
53 PULSEABLE("pulseable"),
55 // Thermostat parameters
57 CUR_SETPOINT("cursetpoint"),
61 AVAIL_MODE("availablemodes"),
64 private final String apiString;
66 ParamType(String apiString) {
67 this.apiString = apiString;
70 public String getApiString() {