Java java.util.function BiPredicate fields, constructors, methods, implement or subclass

Example usage for Java java.util.function BiPredicate fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.util.function BiPredicate.

The text is from its open source code.

Implementation

java.util.function.BiPredicate has the following implementations.
Click this link to see all its implementation.

Constructor

Method

BiPredicateand(BiPredicate other)
Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.
BiPredicatenegate()
Returns a predicate that represents the logical negation of this predicate.
BiPredicateor(BiPredicate other)
Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.
booleantest(T t, U u)
Evaluates this predicate on the given arguments.