Package com.google.common.collect
Class Maps.FilteredMapValues<K,V>
- java.lang.Object
-
- java.util.AbstractCollection<V>
-
- com.google.common.collect.Maps.Values<K,V>
-
- com.google.common.collect.Maps.FilteredMapValues<K,V>
-
- All Implemented Interfaces:
java.lang.Iterable<V>
,java.util.Collection<V>
- Enclosing class:
- Maps
private static final class Maps.FilteredMapValues<K,V> extends Maps.Values<K,V>
-
-
Field Summary
Fields Modifier and Type Field Description (package private) Predicate<? super java.util.Map.Entry<K,V>>
predicate
(package private) java.util.Map<K,V>
unfiltered
-
Fields inherited from class com.google.common.collect.Maps.Values
map
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
remove(java.lang.Object o)
boolean
removeAll(java.util.Collection<?> collection)
boolean
retainAll(java.util.Collection<?> collection)
java.lang.Object[]
toArray()
<T> T[]
toArray(T[] array)
-
Methods inherited from class com.google.common.collect.Maps.Values
clear, contains, forEach, isEmpty, iterator, map, size
-
-
-
-
Method Detail
-
remove
public boolean remove(@CheckForNull java.lang.Object o)
- Specified by:
remove
in interfacejava.util.Collection<K>
- Overrides:
remove
in classMaps.Values<K,V>
-
removeAll
public boolean removeAll(java.util.Collection<?> collection)
- Specified by:
removeAll
in interfacejava.util.Collection<K>
- Overrides:
removeAll
in classMaps.Values<K,V>
-
retainAll
public boolean retainAll(java.util.Collection<?> collection)
- Specified by:
retainAll
in interfacejava.util.Collection<K>
- Overrides:
retainAll
in classMaps.Values<K,V>
-
toArray
public java.lang.Object[] toArray()
-
-