Interface OrganizerItemFilter
public interface OrganizerItemFilter
Defines a filter for selecting
OrganizerItem
items returned by
Organizer.items(OrganizerItemFilter)
.-
Method Summary
Modifier and TypeMethodDescriptionboolean
matches
(OrganizerItem item) Determines whether the item should be included in the filtered results.
-
Method Details
-
matches
Determines whether the item should be included in the filtered results. The method is called for each item in Organizer.- Parameters:
item
- TheOrganizerItem
to evaluate.- Returns:
true
if the item should be included in the results;false
otherwise.
-