2 * Copyright (c) 2010-2021 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.nuvo.internal.communication;
15 import org.eclipse.jdt.annotation.NonNullByDefault;
18 * Represents the different kinds of commands
20 * @author Michael Lobstein - Initial contribution
23 public enum NuvoCommand {
24 GET_CONTROLLER_VERSION("VER"),
35 DISPLINE1("DISPLINE1"),
36 DISPLINE2("DISPLINE2"),
37 DISPLINE3("DISPLINE3"),
38 DISPLINE4("DISPLINE4"),
51 PLAYPAUSE("PLAYPAUSE"),
59 private final String value;
61 NuvoCommand(String value) {
66 * Get the command name
68 * @return the command name
70 public String getValue() {