Package com.google.common.collect
Class FilteredKeyMultimap.Entries
- java.lang.Object
-
- com.google.common.collect.ForwardingObject
-
- com.google.common.collect.ForwardingCollection<java.util.Map.Entry<K,V>>
-
- com.google.common.collect.FilteredKeyMultimap.Entries
-
- All Implemented Interfaces:
java.lang.Iterable<java.util.Map.Entry<K,V>>
,java.util.Collection<java.util.Map.Entry<K,V>>
- Direct Known Subclasses:
FilteredKeySetMultimap.EntrySet
- Enclosing class:
- FilteredKeyMultimap<K,V>
class FilteredKeyMultimap.Entries extends ForwardingCollection<java.util.Map.Entry<K,V>>
-
-
Constructor Summary
Constructors Constructor Description Entries()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.util.Collection<java.util.Map.Entry<K,V>>
delegate()
Returns the backing delegate instance that methods are forwarded to.boolean
remove(java.lang.Object o)
-
Methods inherited from class com.google.common.collect.ForwardingCollection
add, addAll, clear, contains, containsAll, isEmpty, iterator, removeAll, retainAll, size, standardAddAll, standardClear, standardContains, standardContainsAll, standardIsEmpty, standardRemove, standardRemoveAll, standardRetainAll, standardToArray, standardToArray, standardToString, toArray, toArray
-
Methods inherited from class com.google.common.collect.ForwardingObject
toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
Method Detail
-
delegate
protected java.util.Collection<java.util.Map.Entry<K,V>> delegate()
Description copied from class:ForwardingObject
Returns the backing delegate instance that methods are forwarded to. Abstract subclasses generally override this method with an abstract method that has a more specific return type, such asForwardingSet.delegate()
. Concrete subclasses override this method to supply the instance being decorated.- Specified by:
delegate
in classForwardingCollection<java.util.Map.Entry<K,V>>
-
-