Interface Filter<T>

All Known Implementing Classes:
ExperiencePageFilter, PageFilter, ResourceTypesFilter, TeaserPageFilter

public interface Filter<T>
Defines a very simple filter interface.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    includes(T element)
    Checks if the given element is included in this filter.
  • Method Details

    • includes

      boolean includes(T element)
      Checks if the given element is included in this filter.
      Parameters:
      element - the element to check
      Returns:
      true if the element is included; false otherwise.