Package app.entity.interfaces
Interface IFilterableByStudent<T extends ITaggedItem>
- Type Parameters:
T- The type of items implementing theITaggedIteminterface.
- All Known Implementing Classes:
Camp,CampDetails,CampList
public interface IFilterableByStudent<T extends ITaggedItem>
The
IFilterableByStudent interface defines a method for filtering items by student.-
Method Summary
Modifier and TypeMethodDescriptionfilterByStudent(Student student) Filters items based on the specified student.
-
Method Details
-
filterByStudent
Filters items based on the specified student.- Parameters:
student- The student whose information is used as a filter criterion.- Returns:
- A
RepositoryListcontaining items filtered by the specified student.
-