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

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

Introduction

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

The text is from its open source code.

Implementation

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

Constructor

Method

Predicateand(Predicate other)
Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.
booleanequals(Object obj)
Indicates whether some other object is "equal to" this one.
ClassgetClass()
Returns the runtime class of this Object .
PredicateisEqual(Object targetRef)
Returns a predicate that tests if two arguments are equal according to Objects#equals(Object,Object) .
Predicatenegate()
Returns a predicate that represents the logical negation of this predicate.
Predicateor(Predicate other)
Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.
booleantest(T t)
Evaluates this predicate on the given argument.
StringtoString()
Returns a string representation of the object.