Interface ISimpleFilter<T>

Type Parameters:
T - value type

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)
    Check a value.
  • Method Details

    • check

      boolean check(T value)
      Check a value.
      Parameters:
      value - value to check
      Returns:
      true if the value is accepted