Interface Clan


public interface Clan
  • Method Details

    • id

      @NotNull @NotNull UUID id()
    • name

      @NotNull @NotNull String name()
    • tag

      @Nullable @Nullable String tag()
    • sign

      @Nullable @Nullable String sign()
    • description

      @Nullable @Nullable String description()
    • ownerId

      int ownerId()
    • createdBy

      int createdBy()
    • createdAt

      @NotNull @NotNull LocalDateTime createdAt()
    • changedBy

      @Nullable @Nullable Integer changedBy()
    • changedAt

      @Nullable @Nullable LocalDateTime changedAt()
    • builder

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

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

      @NotNull static @NotNull Clan of(@NotNull @NotNull UUID id, @NotNull @NotNull String name, @Nullable @Nullable String tag, @Nullable @Nullable String sign, @Nullable @Nullable String description, int ownerId, int createdBy, @NotNull @NotNull LocalDateTime createdAt)