Interface IFilterableByStatus<T extends ITaggedItem,K>

Type Parameters:
T - The type of the items to filter.
K - The type of the status to filter by.
All Known Implementing Classes:
EnquiryList, SuggestionList

public interface IFilterableByStatus<T extends ITaggedItem,K>
Interface for filtering a list of items by status.
  • Method Summary

    Modifier and Type
    Method
    Description
    filterByStatus(K status)
    Filters the list of items by status.
  • Method Details

    • filterByStatus

      RepositoryList<T> filterByStatus(K status)
      Filters the list of items by status.
      Parameters:
      status - The status to filter by.
      Returns:
      A new list of items filtered by status.