All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hivemq.client.mqtt.datatypes.MqttTopic Maven / Gradle / Ivy

Go to download

HiveMQ MQTT Client is an MQTT 5.0 and MQTT 3.1.1 compatible and feature-rich high-performance Java client library with different API flavours and backpressure support

There is a newer version: 1.3.3
Show newest version
/*
 * Copyright 2018-present HiveMQ and the HiveMQ Community
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.hivemq.client.mqtt.datatypes;

import com.hivemq.client.annotations.DoNotImplement;
import com.hivemq.client.annotations.Immutable;
import com.hivemq.client.internal.mqtt.datatypes.MqttTopicImpl;
import com.hivemq.client.internal.mqtt.datatypes.MqttTopicImplBuilder;
import org.jetbrains.annotations.NotNull;

import java.util.List;

/**
 * MQTT Topic Name according to the MQTT specification.
 * 

* A Topic Name has the same requirements as an {@link MqttUtf8String UTF-8 encoded string}. Additionally it *

    *
  • must be at least 1 character long and *
  • must not contain wildcard characters ({@value MqttTopicFilter#MULTI_LEVEL_WILDCARD}, {@value * MqttTopicFilter#SINGLE_LEVEL_WILDCARD}). *
* * @author Silvio Giebl * @since 1.0 */ @DoNotImplement public interface MqttTopic extends MqttUtf8String { /** * The topic level separator character. */ char TOPIC_LEVEL_SEPARATOR = '/'; /** * Validates and creates a Topic Name of the given string. * * @param string the string representation of the Topic Name. * @return the created Topic Name. * @throws IllegalArgumentException if the string is not a valid Topic Name. */ static @NotNull MqttTopic of(final @NotNull String string) { return MqttTopicImpl.of(string); } /** * Creates a builder for a Topic Name. * * @return the created builder. */ static @NotNull MqttTopicBuilder builder() { return new MqttTopicImplBuilder.Default(); } /** * @return the levels of this Topic Name. */ @Immutable @NotNull List<@NotNull String> getLevels(); /** * @return a Topic Filter matching only this Topic Name. */ @NotNull MqttTopicFilter filter(); /** * Creates a builder for extending this Topic Name. * * @return the created builder. */ MqttTopicBuilder.@NotNull Complete extend(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy