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.icalendar.internal.logic;
15 import org.eclipse.jdt.annotation.NonNullByDefault;
18 * Transport class for a simple text filter.
20 * @author Michael Wodniok - Initial contribution
23 public class EventTextFilter {
24 public static enum Type {
29 public static enum Field {
41 public EventTextFilter(Field field, String value, Type type) {