Package net.kyori.adventure.text
Interface ComponentBuilder<C extends BuildableComponent<C,B>,B extends ComponentBuilder<C,B>>
- Type Parameters:
C
- the component typeB
- the builder type
- All Superinterfaces:
Buildable.Builder<C>
,ComponentBuilderApplicable
,ComponentLike
- All Known Subinterfaces:
BlockNBTComponent.Builder
,EntityNBTComponent.Builder
,KeybindComponent.Builder
,NBTComponentBuilder<C,B>
,ScoreComponent.Builder
,SelectorComponent.Builder
,StorageNBTComponent.Builder
,TextComponent.Builder
,TranslatableComponent.Builder
public interface ComponentBuilder<C extends BuildableComponent<C,B>,B extends ComponentBuilder<C,B>> extends Buildable.Builder<C>, ComponentBuilderApplicable, ComponentLike
A component builder.
- Since:
- 4.0.0
-
Method Summary
Modifier and Type Method Description @NonNull B
append(@NonNull Iterable<? extends ComponentLike> components)
Appends components to this component.@NonNull B
append(@NonNull Component component)
Appends a component to this component.@NonNull B
append(@NonNull Component @NonNull ... components)
Appends components to this component.default @NonNull B
append(@NonNull ComponentBuilder<?,?> builder)
Appends a component to this component.default @NonNull B
append(@NonNull ComponentLike component)
Appends a component to this component.@NonNull B
append(@NonNull ComponentLike @NonNull ... components)
Appends components to this component.default @NonNull B
applicableApply(@NonNull ComponentBuilderApplicable applicable)
Appliesapplicable
.default @NonNull B
apply(@NonNull Consumer<? super ComponentBuilder<?,?>> consumer)
Applies an action to this builder.@NonNull B
applyDeep(@NonNull Consumer<? super ComponentBuilder<?,?>> action)
Applies an action to this component and all child components if they are an instance ofBuildableComponent
.default @NonNull Component
asComponent()
Gets aComponent
representation.@NonNull C
build()
Build a component.@NonNull B
clickEvent(@Nullable ClickEvent event)
Sets the click event of this component.@NonNull B
color(@Nullable TextColor color)
Sets the color of this component.@NonNull B
colorIfAbsent(@Nullable TextColor color)
Sets the color of this component if there isn't one set already.default void
componentBuilderApply(@NonNull ComponentBuilder<?,?> component)
Applies tocomponent
.default @NonNull B
decorate(@NonNull TextDecoration decoration)
Sets the state ofdecoration
toTextDecoration.State.TRUE
.default @NonNull B
decorate(@NonNull TextDecoration @NonNull ... decorations)
Setsdecorations
toTextDecoration.State.TRUE
.default @NonNull B
decoration(@NonNull TextDecoration decoration, boolean flag)
Sets the state of a decoration on this component.@NonNull B
decoration(@NonNull TextDecoration decoration, @NonNull TextDecoration.State state)
Sets the value of a decoration on this component.default @NonNull B
decorations(@NonNull Set<TextDecoration> decorations, boolean flag)
Sets the state of a set of decorations toflag
on this component.@NonNull B
font(@Nullable net.kyori.adventure.key.Key font)
Sets the font of this component.@NonNull B
hoverEvent(@Nullable HoverEventSource<?> source)
Sets the hover event of this component.@NonNull B
insertion(@Nullable String insertion)
Sets the string to be inserted when this component is shift-clicked.@NonNull B
mapChildren(@NonNull Function<BuildableComponent<?,?>,? extends BuildableComponent<?,?>> function)
Replaces each child of this component with the resultant component from the function.@NonNull B
mapChildrenDeep(@NonNull Function<BuildableComponent<?,?>,? extends BuildableComponent<?,?>> function)
Replaces each child and sub-child of this component with the resultant component of the function.default @NonNull B
mergeStyle(@NonNull Component that)
Merges styling from another component into this component.@NonNull B
mergeStyle(@NonNull Component that, @NonNull Set<Style.Merge> merges)
Merges styling from another component into this component.default @NonNull B
mergeStyle(@NonNull Component that, @NonNull Style.Merge @NonNull ... merges)
Merges styling from another component into this component.@NonNull B
resetStyle()
Resets all styling on this component.@NonNull B
style(@NonNull Consumer<Style.Builder> consumer)
Configures the style.@NonNull B
style(@NonNull Style style)
Sets the style.
-
Method Details
-
append
Appends a component to this component.- Parameters:
component
- the component to append- Returns:
- this builder
- Since:
- 4.0.0
-
append
Appends a component to this component.- Parameters:
component
- the component to append- Returns:
- this builder
- Since:
- 4.0.0
-
append
Appends a component to this component.- Parameters:
builder
- the component to append- Returns:
- this builder
- Since:
- 4.0.0
-
append
Appends components to this component.- Parameters:
components
- the components to append- Returns:
- this builder
- Since:
- 4.0.0
-
append
Appends components to this component.- Parameters:
components
- the components to append- Returns:
- this builder
- Since:
- 4.0.0
-
append
Appends components to this component.- Parameters:
components
- the components to append- Returns:
- this builder
- Since:
- 4.0.0
-
apply
@Contract("_ -> this") default @NonNull B apply(@NonNull Consumer<? super ComponentBuilder<?,?>> consumer)Applies an action to this builder.- Parameters:
consumer
- the action- Returns:
- this builder
- Since:
- 4.0.0
-
applyDeep
@Contract("_ -> this") @NonNull B applyDeep(@NonNull Consumer<? super ComponentBuilder<?,?>> action)Applies an action to this component and all child components if they are an instance ofBuildableComponent
.- Parameters:
action
- the action- Returns:
- this builder
- Since:
- 4.0.0
-
mapChildren
@Contract("_ -> this") @NonNull B mapChildren(@NonNull Function<BuildableComponent<?,?>,? extends BuildableComponent<?,?>> function)Replaces each child of this component with the resultant component from the function.- Parameters:
function
- the mapping function- Returns:
- this builder
- Since:
- 4.0.0
-
mapChildrenDeep
@Contract("_ -> this") @NonNull B mapChildrenDeep(@NonNull Function<BuildableComponent<?,?>,? extends BuildableComponent<?,?>> function)Replaces each child and sub-child of this component with the resultant component of the function.- Parameters:
function
- the mapping function- Returns:
- this builder
- Since:
- 4.0.0
-
style
Sets the style.- Parameters:
style
- the style- Returns:
- this builder
- Since:
- 4.0.0
-
style
Configures the style.- Parameters:
consumer
- the style consumer- Returns:
- this builder
- Since:
- 4.0.0
-
font
Sets the font of this component.- Parameters:
font
- the font- Returns:
- this builder
- Since:
- 4.0.0
-
color
Sets the color of this component.- Parameters:
color
- the color- Returns:
- this builder
- Since:
- 4.0.0
-
colorIfAbsent
Sets the color of this component if there isn't one set already.- Parameters:
color
- the color- Returns:
- this builder
- Since:
- 4.0.0
-
decorations
@Contract("_ -> this") default @NonNull B decorations(@NonNull Set<TextDecoration> decorations, boolean flag)Sets the state of a set of decorations toflag
on this component.- Parameters:
decorations
- the decorationsflag
-true
if this component should have the decorations,false
if this component should not have the decorations- Returns:
- this builder
- Since:
- 4.0.0
-
decorate
Sets the state ofdecoration
toTextDecoration.State.TRUE
.- Parameters:
decoration
- the decoration- Returns:
- this builder
- Since:
- 4.0.0
-
decorate
@Contract("_ -> this") default @NonNull B decorate(@NonNull TextDecoration @NonNull ... decorations)Setsdecorations
toTextDecoration.State.TRUE
.- Parameters:
decorations
- the decorations- Returns:
- this builder
- Since:
- 4.0.0
-
decoration
@Contract("_, _ -> this") default @NonNull B decoration(@NonNull TextDecoration decoration, boolean flag)Sets the state of a decoration on this component.- Parameters:
decoration
- the decorationflag
-true
if this component should have the decoration,false
if this component should not have the decoration- Returns:
- this builder
- Since:
- 4.0.0
-
decoration
@Contract("_, _ -> this") @NonNull B decoration(@NonNull TextDecoration decoration, @NonNull TextDecoration.State state)Sets the value of a decoration on this component.- Parameters:
decoration
- the decorationstate
-TextDecoration.State.TRUE
if this component should have the decoration,TextDecoration.State.FALSE
if this component should not have the decoration, andTextDecoration.State.NOT_SET
if the decoration should not have a set value- Returns:
- this builder
- Since:
- 4.0.0
-
clickEvent
Sets the click event of this component.- Parameters:
event
- the click event- Returns:
- this builder
- Since:
- 4.0.0
-
hoverEvent
Sets the hover event of this component.- Parameters:
source
- the hover event source- Returns:
- this builder
- Since:
- 4.0.0
-
insertion
Sets the string to be inserted when this component is shift-clicked.- Parameters:
insertion
- the insertion string- Returns:
- this builder
- Since:
- 4.0.0
-
mergeStyle
Merges styling from another component into this component.- Parameters:
that
- the other component- Returns:
- this builder
- Since:
- 4.0.0
-
mergeStyle
@Contract("_, _ -> this") default @NonNull B mergeStyle(@NonNull Component that, @NonNull Style.Merge @NonNull ... merges)Merges styling from another component into this component.- Parameters:
that
- the other componentmerges
- the parts to merge- Returns:
- this builder
- Since:
- 4.0.0
-
mergeStyle
@Contract("_, _ -> this") @NonNull B mergeStyle(@NonNull Component that, @NonNull Set<Style.Merge> merges)Merges styling from another component into this component.- Parameters:
that
- the other componentmerges
- the parts to merge- Returns:
- this builder
- Since:
- 4.0.0
-
resetStyle
Resets all styling on this component.- Returns:
- this builder
- Since:
- 4.0.0
-
build
@NonNull C build()Build a component.- Specified by:
build
in interfaceBuildable.Builder<C extends BuildableComponent<C,B>>
- Returns:
- the component
-
applicableApply
@Contract("_ -> this") default @NonNull B applicableApply(@NonNull ComponentBuilderApplicable applicable)Appliesapplicable
.- Parameters:
applicable
- the thing to apply- Returns:
- this builder
- Since:
- 4.0.0
-
componentBuilderApply
Description copied from interface:ComponentBuilderApplicable
Applies tocomponent
.- Specified by:
componentBuilderApply
in interfaceComponentBuilderApplicable
- Parameters:
component
- the component builder
-
asComponent
Description copied from interface:ComponentLike
Gets aComponent
representation.- Specified by:
asComponent
in interfaceComponentLike
- Returns:
- a component
-