Class FilteredEntryMultimap.ValuePredicate

  • All Implemented Interfaces:
    Predicate<V>, java.util.function.Predicate<V>
    Enclosing class:
    FilteredEntryMultimap<K,​V>

    final class FilteredEntryMultimap.ValuePredicate
    extends java.lang.Object
    implements Predicate<V>
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private K key  
    • Constructor Summary

      Constructors 
      Constructor Description
      ValuePredicate​(K key)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean apply​(V value)
      Returns the result of applying this predicate to input (Java 8 users, see notes in the class documentation above).
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.util.function.Predicate

        and, negate, or
    • Field Detail

      • key

        private final K key
    • Constructor Detail

      • ValuePredicate

        ValuePredicate​(K key)
    • Method Detail

      • apply

        public boolean apply​(V value)
        Description copied from interface: Predicate
        Returns the result of applying this predicate to input (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 that predicate.apply(a) == predicate.apply(b)).
        Specified by:
        apply in interface Predicate<V>