This is a functional interface
whose functional method is test(Object)
.
Modifier and Type | Method and Description |
---|---|
public default Predicate | Returns: a composed predicate that represents the short-circuiting logical AND of this predicate and theother predicatea predicate that will be logically-ANDed with this
predicate other)Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another. |
public static < the type of arguments to the predicate T> Predicate | Returns: a predicate that tests if two arguments are equal according toObjects#equals(Object, Object) the object reference with which to compare for equality,
which may be targetRef)null Returns a predicate that tests if two arguments are equal according
to |
public default Predicate | Returns: a predicate that represents the logical negation of this predicateReturns a predicate that represents the logical negation of this predicate. |
public static < the type of arguments to the specified predicate T> Predicate | |
public default Predicate | Returns: a composed predicate that represents the short-circuiting logical OR of this predicate and theother predicatea predicate that will be logically-ORed with this
predicate other)Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another. |
public boolean | Returns: true if the input argument matches the predicate,
otherwise false the input argument t)Evaluates this predicate on the given argument. |
and | back to summary |
---|---|
public default Predicate Returns a composed predicate that represents a short-circuiting logical
AND of this predicate and another. When evaluating the composed
predicate, if this predicate is Any exceptions thrown during evaluation of either predicate are relayed
to the caller; if evaluation of this predicate throws an exception, the
|
isEqual | back to summary |
---|---|
public static <T> Predicate Returns a predicate that tests if two arguments are equal according
to
|
negate | back to summary |
---|---|
public default Predicate Returns a predicate that represents the logical negation of this predicate.
|
not | back to summary |
---|---|
public static <T> Predicate Returns a predicate that is the negation of the supplied predicate.
This is accomplished by returning result of the calling
|
or | back to summary |
---|---|
public default Predicate Returns a composed predicate that represents a short-circuiting logical
OR of this predicate and another. When evaluating the composed
predicate, if this predicate is Any exceptions thrown during evaluation of either predicate are relayed
to the caller; if evaluation of this predicate throws an exception, the
|
test | back to summary |
---|---|
public boolean test(T t) Evaluates this predicate on the given argument.
|