Interface Filter<T>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean accept​(T data)
      Determines whether the given data satisfies implementation specific criteria.
    • Method Detail

      • accept

        boolean accept​(@NotNull
                       T data)
        Determines whether the given data satisfies implementation specific criteria.
        Parameters:
        data - the data being assessed
        Returns:
        true if data satisfies the criteria. False otherwise.