Interface BinaryPredicate<S,T>

All Superinterfaces:
BiPredicate<S,T>
All Known Implementing Classes:
BinaryPredicateBase, Guard.Base.Predicate

@Deprecated public interface BinaryPredicate<S,T> extends BiPredicate<S,T>
Deprecated.
replaced in JDK8 by BiPredicate
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    evaluate(S arg1, T arg2)
    Deprecated.
     
    default boolean
    test(S arg1, T arg2)
    Deprecated.
     

    Methods inherited from interface java.util.function.BiPredicate

    and, negate, or
  • Method Details

    • evaluate

      boolean evaluate(S arg1, T arg2)
      Deprecated.
    • test

      default boolean test(S arg1, T arg2)
      Deprecated.
      Specified by:
      test in interface BiPredicate<S,T>