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.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"),
32 STATUS_QUERY("STATUS?"),
36 DISPLINE1("DISPLINE1"),
37 DISPLINE2("DISPLINE2"),
38 DISPLINE3("DISPLINE3"),
39 DISPLINE4("DISPLINE4"),
52 PLAYPAUSE("PLAYPAUSE"),
60 private final String value;
62 NuvoCommand(String value) {
67 * Get the command name
69 * @return the command name
71 public String getValue() {