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.binding.luftdateninfo.internal.utils;
15 import org.eclipse.jdt.annotation.NonNullByDefault;
18 * The {@link Constants} Constants used in this binding
20 * @author Bernd Weymann - Initial contribution
23 public class Constants {
24 public static final String EMPTY = "";
25 public static final String P1 = "P1";
26 public static final String P2 = "P2";
28 public static final String TEMPERATURE = "temperature";
29 public static final String HUMIDITY = "humidity";
30 public static final String PRESSURE = "pressure";
31 public static final String PRESSURE_SEALEVEL = "pressure_at_sealevel";
33 public static final String NOISE_EQ = "noise_LAeq";
34 public static final String NOISE_MIN = "noise_LA_min";
35 public static final String NOISE_MAX = "noise_LA_max";
36 public static final int UNDEF = -1;