Interface ForwardingAudience

  • All Superinterfaces:
    Audience, Pointered
    All Known Subinterfaces:
    ForwardingAudience.Single
    Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface ForwardingAudience
    extends Audience
    A receiver that wraps one or more receivers.

    ForwardingAudience is designed to easily allow users or implementations wrap an existing (collection of) Audience(s).

    Since:
    4.0.0
    See Also:
    Audience
    • Method Detail

      • audiences

        @OverrideOnly
        @NotNull
        @NotNull Iterable<? extends Audience> audiences()
        Gets the audiences.
        Returns:
        the audiences
        Since:
        4.0.0
      • get

        @NotNull
        default <T> @NotNull Optional<T> get​(@NotNull
                                             @NotNull Pointer<T> pointer)
        Description copied from interface: Pointered
        Gets the value of pointer.
        Specified by:
        get in interface Pointered
        Type Parameters:
        T - the type
        Parameters:
        pointer - the pointer
        Returns:
        the value
      • getOrDefault

        @Contract("_, null -> null; _, !null -> !null")
        @Nullable
        default <T> T getOrDefault​(@NotNull
                                   @NotNull Pointer<T> pointer,
                                   @Nullable
                                   T defaultValue)
        Description copied from interface: Pointered
        Gets the value of pointer.

        If this Audience is unable to provide a value for pointer, defaultValue will be returned.

        Specified by:
        getOrDefault in interface Pointered
        Type Parameters:
        T - the type
        Parameters:
        pointer - the pointer
        defaultValue - the default value
        Returns:
        the value
      • getOrDefaultFrom

        default <T> @UnknownNullability T getOrDefaultFrom​(@NotNull
                                                           @NotNull Pointer<T> pointer,
                                                           @NotNull
                                                           @NotNull Supplier<? extends T> defaultValue)
        Description copied from interface: Pointered
        Gets the value of pointer.

        If this Audience is unable to provide a value for pointer, the value supplied by defaultValue will be returned.

        Specified by:
        getOrDefaultFrom in interface Pointered
        Type Parameters:
        T - the type
        Parameters:
        pointer - the pointer
        defaultValue - the default value supplier
        Returns:
        the value
      • sendMessage

        default void sendMessage​(@NotNull
                                 @NotNull Identified source,
                                 @NotNull
                                 @NotNull Component message,
                                 @NotNull
                                 @NotNull MessageType type)
        Description copied from interface: Audience
        Sends a chat message.
        Specified by:
        sendMessage in interface Audience
        Parameters:
        source - the source of the message
        message - a message
        type - the type
        See Also:
        Component
      • sendMessage

        default void sendMessage​(@NotNull
                                 @NotNull Identity source,
                                 @NotNull
                                 @NotNull Component message,
                                 @NotNull
                                 @NotNull MessageType type)
        Description copied from interface: Audience
        Sends a chat message.
        Specified by:
        sendMessage in interface Audience
        Parameters:
        source - the identity of the source of the message
        message - a message
        type - the type
        See Also:
        Component
      • sendActionBar

        default void sendActionBar​(@NotNull
                                   @NotNull Component message)
        Description copied from interface: Audience
        Sends a message on the action bar.
        Specified by:
        sendActionBar in interface Audience
        Parameters:
        message - a message
        See Also:
        Component
      • sendPlayerListHeaderAndFooter

        default void sendPlayerListHeaderAndFooter​(@NotNull
                                                   @NotNull Component header,
                                                   @NotNull
                                                   @NotNull Component footer)
        Description copied from interface: Audience
        Sends the player list header and footer.
        Specified by:
        sendPlayerListHeaderAndFooter in interface Audience
        Parameters:
        header - the header
        footer - the footer
      • showTitle

        default void showTitle​(@NotNull
                               @NotNull Title title)
        Description copied from interface: Audience
        Shows a title.
        Specified by:
        showTitle in interface Audience
        Parameters:
        title - a title
        See Also:
        Title
      • clearTitle

        default void clearTitle()
        Description copied from interface: Audience
        Clears the title, if one is being displayed.
        Specified by:
        clearTitle in interface Audience
        See Also:
        Title
      • resetTitle

        default void resetTitle()
        Description copied from interface: Audience
        Resets the title and timings back to their default.
        Specified by:
        resetTitle in interface Audience
        See Also:
        Title
      • showBossBar

        default void showBossBar​(@NotNull
                                 @NotNull BossBar bar)
        Description copied from interface: Audience
        Shows a boss bar.
        Specified by:
        showBossBar in interface Audience
        Parameters:
        bar - a boss bar
        See Also:
        BossBar
      • hideBossBar

        default void hideBossBar​(@NotNull
                                 @NotNull BossBar bar)
        Description copied from interface: Audience
        Hides a boss bar.
        Specified by:
        hideBossBar in interface Audience
        Parameters:
        bar - a boss bar
        See Also:
        BossBar
      • playSound

        default void playSound​(@NotNull
                               @NotNull Sound sound,
                               double x,
                               double y,
                               double z)
        Description copied from interface: Audience
        Plays a sound at a location.
        Specified by:
        playSound in interface Audience
        Parameters:
        sound - a sound
        x - x coordinate
        y - y coordinate
        z - z coordinate
        See Also:
        Sound
      • playSound

        default void playSound​(@NotNull
                               @NotNull Sound sound,
                               @NotNull Sound.Emitter emitter)
        Description copied from interface: Audience
        Plays a sound from an emitter, usually an entity.

        Sounds played using this method will follow the emitter unless the sound is a custom sound. In this case the sound will be played at the location of the emitter and will not follow them.

        To play a sound that follows the recipient, use Sound.Emitter.self().

        Note: Due to MC-138832, the volume and pitch may be ignored when using this method.

        Specified by:
        playSound in interface Audience
        Parameters:
        sound - a sound
        emitter - an emitter
      • stopSound

        default void stopSound​(@NotNull
                               @NotNull SoundStop stop)
        Description copied from interface: Audience
        Stops a sound, or many sounds.
        Specified by:
        stopSound in interface Audience
        Parameters:
        stop - a sound stop
        See Also:
        SoundStop
      • openBook

        default void openBook​(@NotNull
                              @NotNull Book book)
        Description copied from interface: Audience
        Opens a book.

        When possible, no item should persist after closing the book.

        Specified by:
        openBook in interface Audience
        Parameters:
        book - a book
        See Also:
        Book