Package com.google.common.collect
Class FilteredEntryMultimap.ValuePredicate
java.lang.Object
com.google.common.collect.FilteredEntryMultimap.ValuePredicate
- Enclosing class:
FilteredEntryMultimap<K,
V>
-
Field Details
-
key
-
-
Constructor Details
-
ValuePredicate
ValuePredicate(K key)
-
-
Method Details
-
apply
Description copied from interface:Predicate
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))
.
-