Interface Relation<D,R>

All Superinterfaces:
BiPredicate<D,R>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@Deprecated @FunctionalInterface public interface Relation<D,R> extends BiPredicate<D,R>
Deprecated.
better use BiPredicate directly.
A binary predicate. Is mapped implemented directly by using BiPredicate
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    relates(D d, R r)
    Deprecated.
    Historical older method, must be overriden by all instances.
    default boolean
    test(D d, R r)
    Deprecated.
    Map our method to that of the (younger) java standard class.

    Methods inherited from interface java.util.function.BiPredicate

    and, negate, or
  • Method Details

    • relates

      boolean relates(D d, R r)
      Deprecated.
      Historical older method, must be overriden by all instances.
    • test

      default boolean test(D d, R r)
      Deprecated.
      Map our method to that of the (younger) java standard class.
      Specified by:
      test in interface BiPredicate<D,R>