Package com.google.common.base
Interface Predicate<T>
-
- All Known Implementing Classes:
BlockHelper,BlockStateHelper,BloomFilter,CharMatcher,EntitySelectors.ArmoredMob,EnumFacing.Axis,EnumFacing.Plane,Range
@GwtCompatible public interface Predicate<T>
Determines a true or false value for a given input.The
Predicatesclass provides common predicates and related utilities.See the Guava User Guide article on the use of
Predicate.- Since:
- 2.0 (imported from Google Collections Library)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanapply(T input)Returns the result of applying this predicate toinput.booleanequals(java.lang.Object object)Indicates whether another object is equal to this predicate.
-
-
-
Method Detail
-
apply
boolean apply(@Nullable T input)
Returns the result of applying this predicate toinput. 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:
java.lang.NullPointerException- ifinputis null and this predicate does not accept null arguments
-
equals
boolean equals(@Nullable java.lang.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 classjava.lang.Object
-
-