Package app.entity.interfaces
Interface IFilterableByDateRange<T extends ITaggedItem>
- Type Parameters:
T- The type of item to filter.
- All Known Implementing Classes:
Camp,CampDetails,CampList
public interface IFilterableByDateRange<T extends ITaggedItem>
Interface for filtering a list of items by date range.
-
Method Summary
Modifier and TypeMethodDescriptionfilterByDateRange(Date start, Date end) Filters the list by date range.
-
Method Details
-
filterByDateRange
Filters the list by date range.- Parameters:
start- The start date.end- The end date.- Returns:
- A new list containing the filtered items.
-