]> git.basschouten.com Git - openhab-addons.git/blob
98e602ac523c3244dffba1994926548bb31fa29a
[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.bosesoundtouch.internal;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16
17 /**
18  * The {@link XMLHandlerState} class defines the XML States provided from Bose Soundtouch
19  *
20  * @author Christian Niessner - Initial contribution
21  * @author Thomas Traunbauer - Initial contribution
22  */
23 @NonNullByDefault
24 public enum XMLHandlerState {
25     INIT,
26     Msg,
27     MsgHeader,
28     MsgBody,
29     Bass,
30     BassActual,
31     BassTarget,
32     BassUpdated,
33     BassMin,
34     BassMax,
35     BassDefault,
36     ContentItem,
37     ContentItemItemName,
38     ContentItemContainerArt,
39     Group,
40     GroupName,
41     Components,
42     Component,
43     Info,
44     InfoName,
45     InfoType,
46     InfoModuleType,
47     InfoFirmwareVersion,
48     Presets,
49     Preset,
50     MasterDeviceId,
51     DeviceId,
52     DeviceIp,
53     NowPlaying,
54     NowPlayingAlbum,
55     NowPlayingArt,
56     NowPlayingArtist,
57     NowPlayingDescription,
58     NowPlayingGenre,
59     NowPlayingPlayStatus,
60     NowPlayingRateEnabled,
61     NowPlayingSkipEnabled,
62     NowPlayingSkipPreviousEnabled,
63     NowPlayingStationLocation,
64     NowPlayingStationName,
65     NowPlayingTrack,
66     Unprocessed, // unprocessed / ignored data
67     UnprocessedNoTextExpected, // unprocessed / ignored data
68     Updates,
69     Volume,
70     VolumeActual,
71     VolumeTarget,
72     VolumeUpdated,
73     VolumeMuteEnabled,
74     Zone,
75     ZoneMember,
76     ZoneUpdated,
77     Sources,
78     BassCapabilities,
79     BassAvailable,
80 }