Interface Message


public interface Message
Represents a message in the Murmel API. Each message has an ID, a tag, a language ID, and the actual message content.
  • Method Details

    • id

      int id()
    • tagId

      @NotNull @NotNull String tagId()
    • languageId

      int languageId()
    • message

      @NotNull @NotNull String message()
    • builder

      @NotNull @NotNull Message.Builder builder()
    • with

      @NotNull @NotNull Message with(@NotNull @NotNull Consumer<Message.Builder> consumer)
    • of

      @NotNull static @NotNull Message of(int id, @NotNull @NotNull String tagId, int languageId, @NotNull @NotNull String message)