Uses of Interface
net.kyori.adventure.text.JoinConfiguration
Packages that use JoinConfiguration
Package
Description
Data for controlling components, their styles, and events.
-
Uses of JoinConfiguration in net.kyori.adventure.text
Subinterfaces with type arguments of type JoinConfiguration in net.kyori.adventure.textModifier and TypeInterfaceDescriptionstatic interfaceA builder for join configurations.Methods in net.kyori.adventure.text that return JoinConfigurationModifier and TypeMethodDescriptionstatic JoinConfigurationJoinConfiguration.arrayLike()Provides a join configuration that joins components together in the same mannerArrays.toString(Object[])stringifies an array.static JoinConfigurationJoinConfiguration.commas(boolean spaces) Provides a join configuration with no prefix or suffix that simply joins the components together using a single comma, matching a CSV like layout.static JoinConfigurationJoinConfiguration.newlines()Provides a join configuration with no prefix or suffix that simply joins the components together using theComponent.newline()component.static JoinConfigurationJoinConfiguration.noSeparators()Gets a join configuration with no separators, prefix or suffix.static JoinConfigurationJoinConfiguration.separator(@Nullable ComponentLike separator) Creates a join configuration with a separator and no prefix or suffix.static JoinConfigurationJoinConfiguration.separators(@Nullable ComponentLike separator, @Nullable ComponentLike lastSeparator) Creates a join configuration with a separator and last separator but no prefix or suffix.static JoinConfigurationJoinConfiguration.spaces()Provides a join configuration with no prefix or suffix that simply joins the components together using theComponent.space()component.Methods in net.kyori.adventure.text with parameters of type JoinConfigurationModifier and TypeMethodDescriptionstatic ComponentComponent.join(JoinConfiguration config, Iterable<? extends ComponentLike> components) Joinscomponentsusing the configuration inconfig.static ComponentComponent.join(JoinConfiguration config, ComponentLike... components) Joinscomponentsusing the configuration inconfig.