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.io.imperihome.internal.processor;
16 * ISS tag types enumeration.
18 * @author Pepijn de Geus - Initial contribution
22 LABEL("label", false),
25 MAPPING("mapping", false),
28 INVERT("invert", false),
32 MIN_VAL("minVal", false),
33 MAX_VAL("maxVal", false),
34 MODES("modes", false);
36 private final String prefix;
37 private final boolean multiValue;
39 TagType(String prefix, boolean multiValue) {
41 this.multiValue = multiValue;
47 public String getPrefix() {
52 * @return True if this tag may exist multiple times on a single item.
54 public boolean isMultiValue() {