final class FilteredEntryMultimap.ValuePredicate extends java.lang.Object implements Predicate<V>
Constructor and Description |
---|
ValuePredicate(K key) |
Modifier and Type | Method and Description |
---|---|
boolean |
apply(V value)
Returns the result of applying this predicate to
input . |
private final K key
ValuePredicate(K key)
public boolean apply(@Nullable V value)
Predicate
input
. This method is generally
expected, but not absolutely required, to have the following properties:
Objects.equal
(a, b)
implies that predicate.apply(a) ==
predicate.apply(b))
.