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 (Java 8 users, see notes in the
class documentation above). |
private final K key
ValuePredicate(K key)
public boolean apply(V value)
Predicateinput (Java 8 users, see notes in the
class documentation above). 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)).