Interface Grid.Filter<T>

All Superinterfaces:
Predicate<T>
Enclosing class:
Grid

public static interface Grid.Filter<T> extends Predicate<T>
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    filter(T item)
     
    default boolean
    test(T item)
     

    Methods inherited from interface java.util.function.Predicate

    and, negate, or
  • Method Details

    • filter

      boolean filter(T item)
    • test

      default boolean test(T item)
      Specified by:
      test in interface Predicate<T>