Interface Filter<T>

All Known Implementing Classes:
DefaultServer.FilterAdapter

public interface Filter<T>
Determines a true or false value for a given input.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    apply(T input)
    Returns true if the specified input is accepted by this filter.
  • Method Details

    • apply

      boolean apply(T input)
      Returns true if the specified input is accepted by this filter.