Interface BinaryPredicate<S,​T>

  • All Superinterfaces:
    java.util.function.BiPredicate<S,​T>
    All Known Implementing Classes:
    BinaryPredicateBase, Guard.Base.Predicate

    @Deprecated
    public interface BinaryPredicate<S,​T>
    extends java.util.function.BiPredicate<S,​T>
    Deprecated.
    replaced in JDK8 by BiPredicate
    • Method Detail

      • evaluate

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

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