B - the type of the builder.@DoNotImplement public interface Mqtt5UserPropertiesBuilderBase<B extends Mqtt5UserPropertiesBuilderBase<B>>
Mqtt5UserProperties.| Modifier and Type | Method and Description |
|---|---|
B |
add(@NotNull Mqtt5UserProperty userProperty)
Adds a
User Property. |
B |
add(@NotNull MqttUtf8String name,
@NotNull MqttUtf8String value)
Adds a
User Property. |
B |
add(@NotNull String name,
@NotNull String value)
Adds a
User Property. |
B |
addAll(@NotNull Collection<? extends Mqtt5UserProperty> userProperties)
Adds a collection of
User Properties. |
B |
addAll(Mqtt5UserProperty... userProperties)
Adds
User Properties. |
B |
addAll(@NotNull Stream<? extends Mqtt5UserProperty> userProperties)
Adds a stream of
User Properties. |
@CheckReturnValue @NotNull B add(@NotNull @NotNull String name, @NotNull @NotNull String value)
User Property.name - the name of the User Property.value - the value of the User Property.@CheckReturnValue @NotNull B add(@NotNull @NotNull MqttUtf8String name, @NotNull @NotNull MqttUtf8String value)
User Property.name - the name of the User Property.value - the value of the User Property.@CheckReturnValue @NotNull B add(@NotNull @NotNull Mqtt5UserProperty userProperty)
User Property.userProperty - the User Property.@CheckReturnValue @NotNull B addAll(@NotNull Mqtt5UserProperty... userProperties)
User Properties.userProperties - the User Properties.@CheckReturnValue @NotNull B addAll(@NotNull @NotNull Collection<? extends Mqtt5UserProperty> userProperties)
User Properties.userProperties - the collection of User Properties.@CheckReturnValue @NotNull B addAll(@NotNull @NotNull Stream<? extends Mqtt5UserProperty> userProperties)
User Properties.userProperties - the stream of User Properties.