Package com.google.common.collect
Class AbstractBiMap.EntrySet
java.lang.Object
com.google.common.collect.ForwardingObject
com.google.common.collect.ForwardingCollection<Map.Entry<K,V>>
com.google.common.collect.ForwardingSet<Map.Entry<K,V>>
com.google.common.collect.AbstractBiMap.EntrySet
- All Implemented Interfaces:
Iterable<Map.Entry<K,
,V>> Collection<Map.Entry<K,
,V>> Set<Map.Entry<K,
V>>
- Enclosing class:
AbstractBiMap<K,
V>
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
clear()
boolean
boolean
containsAll
(Collection<?> c) delegate()
Returns the backing delegate instance that methods are forwarded to.iterator()
boolean
boolean
removeAll
(Collection<?> c) boolean
retainAll
(Collection<?> c) Object[]
toArray()
<T> T[]
toArray
(T[] array) Methods inherited from class com.google.common.collect.ForwardingSet
equals, hashCode, standardEquals, standardHashCode, standardRemoveAll
Methods inherited from class com.google.common.collect.ForwardingCollection
add, addAll, isEmpty, size, standardAddAll, standardClear, standardContains, standardContainsAll, standardIsEmpty, standardRemove, standardRetainAll, standardToArray, standardToArray, standardToString
Methods inherited from class com.google.common.collect.ForwardingObject
toString
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Field Details
-
esDelegate
-
-
Constructor Details
-
EntrySet
private EntrySet()
-
-
Method Details
-
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 classForwardingSet<Map.Entry<K,
V>>
-
clear
public void clear() -
remove
-
iterator
-
toArray
-
toArray
public <T> T[] toArray(T[] array) -
contains
-
containsAll
- Specified by:
containsAll
in interfaceCollection<Map.Entry<K,
V>> - Specified by:
containsAll
in interfaceSet<Map.Entry<K,
V>> - Overrides:
containsAll
in classForwardingCollection<Map.Entry<K,
V>>
-
removeAll
-
retainAll
-