]> git.basschouten.com Git - openhab-addons.git/blob
a01dccc31ee0ac4079aa888fbc611d296559e36b
[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.dwdpollenflug.internal.dto;
14
15 /**
16  * The {@link DWDPollenflug} class is internal DWD data structure.
17  *
18  * @author Johannes Ott - Initial contribution
19  */
20 public enum DWDPollenflugPollen {
21     AMBROSIA("ambrosia"),
22     BEIFUSS("mugwort"),
23     BIRKE("birch"),
24     ERLE("alder"),
25     ESCHE("ash"),
26     GRAESER("grasses"),
27     HASEL("hazel"),
28     ROGGEN("rye");
29
30     private final String channelName;
31
32     private DWDPollenflugPollen(String channelName) {
33         this.channelName = channelName;
34     }
35
36     public String getChannelName() {
37         return channelName;
38     }
39 }