Interface Group


public interface Group
  • Method Details

    • id

      int id()
    • groupName

      @NotNull @NotNull String groupName()
    • priority

      int priority()
    • isDefault

      boolean isDefault()
    • createdBy

      int createdBy()
    • createdAt

      @NotNull @NotNull LocalDateTime createdAt()
    • changedBy

      @Nullable @Nullable Integer changedBy()
    • changedAt

      @Nullable @Nullable LocalDateTime changedAt()
    • builder

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

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

      @NotNull static @NotNull Group of(int id, @NotNull @NotNull String groupName, int priority, boolean isDefault, int createdBy, @NotNull @NotNull LocalDateTime createdAt)