Interface PairProcessor<S,T>

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 PairProcessor<S,T>
Consider using BiPredicate instead.
  • Method Details

    • process

      boolean process(S s, T t)
    • alwaysFalse

      @NotNull static <S, T> @NotNull PairProcessor<S,T> alwaysFalse()
    • alwaysTrue

      @NotNull static <S, T> @NotNull PairProcessor<S,T> alwaysTrue()