Package com.day.cq.commons
Interface Filter<T>
-
- All Known Implementing Classes:
ExperiencePageFilter,PageFilter,ResourceTypesFilter,TeaserPageFilter
public interface Filter<T>Defines a very simple filter interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanincludes(T element)Checks if the given element is included in this filter.
-
-
-
Method Detail
-
includes
boolean includes(T element)
Checks if the given element is included in this filter.- Parameters:
element- the element to check- Returns:
trueif the element is included;falseotherwise.
-
-