Interface ISimpleFilter<T>

Type Parameters:
T -

public interface ISimpleFilter<T>
A functional interface used to check an object and provide a boolean value. This interface is akin to to Function<ObjectType, boolean>.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    check(T value)
     
  • Method Details

    • check

      boolean check(T value)
      Parameters:
      value -
      Returns: