]> git.basschouten.com Git - openhab-addons.git/blob
c8f8f19596be4b0ba7d77a7c47c7dac11ae897e1
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2021 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.automower.internal.things;
14
15 /**
16  * @author Markus Pfleger - Initial contribution
17  */
18 public enum AutomowerCommand {
19
20     START("Start"),
21     RESUME_SCHEDULE("ResumeSchedule"),
22     PAUSE("Pause"),
23     PARK("Park"),
24     PARK_UNTIL_NEXT_SCHEDULE("ParkUntilNextSchedule"),
25     PARK_UNTIL_FURTHER_NOTICE("ParkUntilFurtherNotice");
26
27     private final String command;
28
29     private AutomowerCommand(String command) {
30         this.command = command;
31     }
32
33     public String getCommand() {
34         return command;
35     }
36 }