Interface ClanGroup


public interface ClanGroup
  • Method Details

    • clanId

      @NotNull @NotNull UUID clanId()
    • groupId

      @NotNull @NotNull UUID groupId()
    • groupName

      @NotNull @NotNull String groupName()
    • priority

      int priority()
    • defaultGroup

      boolean defaultGroup()
    • createdBy

      int createdBy()
    • createdAt

      @NotNull @NotNull LocalDateTime createdAt()
    • changedBy

      @Nullable @Nullable Integer changedBy()
    • changedAt

      @Nullable @Nullable LocalDateTime changedAt()
    • builder

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

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

      @NotNull static @NotNull ClanGroup of(@NotNull @NotNull UUID clanId, @NotNull @NotNull UUID groupId, @NotNull @NotNull String groupName, int priority, boolean defaultGroup, int createdBy, @NotNull @NotNull LocalDateTime createdAt)