Uses of Interface
net.kyori.adventure.text.JoinConfiguration.Builder
Packages that use JoinConfiguration.Builder
Package
Description
Data for controlling components, their styles, and events.
-
Uses of JoinConfiguration.Builder in net.kyori.adventure.text
Methods in net.kyori.adventure.text that return JoinConfiguration.BuilderModifier and TypeMethodDescriptionstatic JoinConfiguration.BuilderJoinConfiguration.builder()Creates a new builder.JoinConfiguration.Builder.convertor(Function<ComponentLike, Component> convertor) Sets the convertor of this join configuration builder.JoinConfiguration.Builder.lastSeparator(@Nullable ComponentLike lastSeparator) Sets the last separator of this join configuration builder.JoinConfiguration.Builder.lastSeparatorIfSerial(@Nullable ComponentLike lastSeparatorIfSerial) Sets the last separator that will be used instead of the normal last separator in the case where there are more than two components being joined.JoinConfiguration.Builder.parentStyle(Style parentStyle) Sets the style of the parent component that contains the joined components.JoinConfiguration.Builder.predicate(Predicate<ComponentLike> predicate) Sets the predicate of this join configuration builder.JoinConfiguration.Builder.prefix(@Nullable ComponentLike prefix) Sets the prefix of this join configuration builder.JoinConfiguration.Builder.separator(@Nullable ComponentLike separator) Sets the separator of this join configuration builder.JoinConfiguration.Builder.suffix(@Nullable ComponentLike suffix) Sets the suffix of this join configuration builder.Methods in net.kyori.adventure.text with parameters of type JoinConfiguration.BuilderModifier and TypeMethodDescriptionstatic ComponentComponent.join(JoinConfiguration.Builder configBuilder, Iterable<? extends ComponentLike> components) Joinscomponentsusing the configuration inconfigBuilder.static ComponentComponent.join(JoinConfiguration.Builder configBuilder, ComponentLike... components) Joinscomponentsusing the configuration inconfigBuilder.