Interface NumberFormat
- All Known Subinterfaces:
FixedFormat
,StyledFormat
public interface NumberFormat
Describes a scoreboard number format that applies custom formatting to scoreboard scores.
-
Method Summary
Modifier and TypeMethodDescriptionstatic @NotNull NumberFormat
blank()
Creates a blank scoreboard number format that removes the score number entirely.static @NotNull FixedFormat
fixed
(@NotNull ComponentLike component) Creates a scoreboard number format that replaces the score number with a chat component.static @NotNull StyledFormat
noStyle()
Gets an un-styled number format.static @NotNull StyledFormat
Creates a scoreboard number format that applies a custom formatting to the score number.static @NotNull StyledFormat
styled
(@NotNull StyleBuilderApplicable @NotNull ... styleBuilderApplicables) Creates a scoreboard number format that applies a custom formatting to the score number.
-
Method Details
-
blank
Creates a blank scoreboard number format that removes the score number entirely.- Returns:
- a blank number format
-
noStyle
Gets an un-styled number format.- Returns:
- an un-styled number format
-
styled
Creates a scoreboard number format that applies a custom formatting to the score number.- Parameters:
style
- the style to apply on the number- Returns:
- a styled number format
-
styled
@NotNull static @NotNull StyledFormat styled(@NotNull @NotNull StyleBuilderApplicable @NotNull ... styleBuilderApplicables) Creates a scoreboard number format that applies a custom formatting to the score number.- Parameters:
styleBuilderApplicables
- the style to apply on the number- Returns:
- a styled number format
-
fixed
Creates a scoreboard number format that replaces the score number with a chat component.- Parameters:
component
- the component to replace the number with- Returns:
- a fixed number format
-