Example usage for Java java.util.function Predicate fields, constructors, methods, implement or subclass
The text is from its open source code.
Predicate | and(Predicate super T> other) Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another. |
boolean | equals(Object obj) Indicates whether some other object is "equal to" this one. |
Class> | getClass() Returns the runtime class of this Object . |
Predicate | isEqual(Object targetRef) Returns a predicate that tests if two arguments are equal according to Objects#equals(Object,Object) . |
Predicate | negate() Returns a predicate that represents the logical negation of this predicate. |
Predicate | or(Predicate super T> other) Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another. |
boolean | test(T t) Evaluates this predicate on the given argument. |
String | toString() Returns a string representation of the object. |