Interface Filter<T>

  • Type Parameters:
    T - the type parameter
    All Known Implementing Classes:
    ActionFilter, AreaFilter, EntityFilter, IdFilter, ItemFilter, NameFilter
    Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface Filter<T>
    The generic Filter.
    • Method Detail

      • match

        boolean match​(T acceptable)
        If object match's arguments.
        Parameters:
        acceptable - the acceptable
        Returns:
        the boolean
      • negate

        default Filter<T> negate()