接口 PairProcessor<S,T>

函数接口:
这是一个函数接口, 因此可用作 lambda 表达式或方法引用的赋值目标。

@FunctionalInterface public interface PairProcessor<S,T>
Consider using BiPredicate instead.
  • 方法详细资料

    • 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()