Interface Predicate<T>
- 
- All Superinterfaces:
- Predicate<T>
 - All Known Implementing Classes:
- BloomFilter,- CharMatcher,- Range
 - Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
 
 @FunctionalInterface @GwtCompatible public interface Predicate<T> extends Predicate<T> Legacy version ofjava.util.function.Predicate. Determines a true or false value for a given input.As this interface extends java.util.function.Predicate, an instance of this type may be used as aPredicatedirectly. To use ajava.util.function.Predicatewhere acom.google.common.base.Predicateis expected, use the method referencepredicate::test.This interface is now a legacy type. Use java.util.function.Predicate(or the appropriate primitive specialization such asIntPredicate) instead whenever possible. Otherwise, at least reduce explicit dependencies on this type by using lambda expressions or method references instead of classes, leaving your code easier to migrate in the future.The Predicatesclass provides common predicates and related utilities.See the Guava User Guide article on the use of Predicate.- Since:
- 2.0
- Author:
- Kevin Bourrillion
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description booleanapply(@Nullable T input)Returns the result of applying this predicate toinput(Java 8 users, see notes in the class documentation above).booleanequals(@Nullable Object object)Indicates whether another object is equal to this predicate.default booleantest(@Nullable T input)Evaluates this predicate on the given argument.
 
- 
- 
- 
Method Detail- 
apply@CanIgnoreReturnValue boolean apply(@Nullable T input) Returns the result of applying this predicate toinput(Java 8 users, see notes in the class documentation above). This method is generally expected, but not absolutely required, to have the following properties:- Its execution does not cause any observable side effects.
- The computation is consistent with equals; that is, Objects.equal(a, b)implies thatpredicate.apply(a) == predicate.apply(b)).
 - Throws:
- NullPointerException- if- inputis null and this predicate does not accept null arguments
 
 - 
equalsboolean equals(@Nullable Object object) Indicates whether another object is equal to this predicate.Most implementations will have no reason to override the behavior of Object.equals(java.lang.Object). However, an implementation may also choose to returntruewheneverobjectis aPredicatethat it considers interchangeable with this one. "Interchangeable" typically means thatthis.apply(t) == that.apply(t)for alltof typeT). Note that afalseresult from this method does not imply that the predicates are known not to be interchangeable.- Overrides:
- equalsin class- Object
- Parameters:
- object- the reference object with which to compare.
- Returns:
- trueif this object is the same as the obj argument;- falseotherwise.
- See Also:
- Object.hashCode(),- HashMap
 
 - 
testdefault boolean test(@Nullable T input) Description copied from interface:java.util.function.PredicateEvaluates this predicate on the given argument.
 
- 
 
-