Interface NumberFormat
- All Known Subinterfaces:
FixedFormat,StyledFormat
public interface NumberFormat
Describes a scoreboard number format that applies custom formatting to scoreboard scores.
-
Method Summary
Static MethodsModifier and TypeMethodDescriptionstatic @NotNull NumberFormatblank()Creates a blank scoreboard number format that removes the score number entirely.static @NotNull FixedFormatfixed(@NotNull ComponentLike component) Creates a scoreboard number format that replaces the score number with a chat component.static @NotNull StyledFormatnoStyle()Gets an un-styled number format.static @NotNull StyledFormatCreates a scoreboard number format that applies a custom formatting to the score number.static @NotNull StyledFormatstyled(@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
-