Package com.google.common.collect
Class Maps.Values<K,V>
- java.lang.Object
-
- java.util.AbstractCollection<V>
-
- com.google.common.collect.Maps.Values<K,V>
-
- All Implemented Interfaces:
java.lang.Iterable<V>
,java.util.Collection<V>
- Direct Known Subclasses:
CompactHashMap.ValuesView
,ForwardingMap.StandardValues
,Maps.FilteredMapValues
,StandardTable.Column.Values
,StandardTable.ColumnMap.ColumnMapValues
- Enclosing class:
- Maps
static class Maps.Values<K,V> extends java.util.AbstractCollection<V>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
boolean
contains(java.lang.Object o)
void
forEach(java.util.function.Consumer<? super V> action)
boolean
isEmpty()
java.util.Iterator<V>
iterator()
(package private) java.util.Map<K,V>
map()
boolean
remove(java.lang.Object o)
boolean
removeAll(java.util.Collection<?> c)
boolean
retainAll(java.util.Collection<?> c)
int
size()
-
Methods inherited from class java.util.AbstractCollection
add, addAll, containsAll, toArray, toArray, toString
-
-
-
-
Method Detail
-
iterator
public java.util.Iterator<V> iterator()
-
forEach
public void forEach(java.util.function.Consumer<? super V> action)
-
remove
public boolean remove(@CheckForNull java.lang.Object o)
-
removeAll
public boolean removeAll(java.util.Collection<?> c)
-
retainAll
public boolean retainAll(java.util.Collection<?> c)
-
size
public int size()
-
isEmpty
public boolean isEmpty()
-
contains
public boolean contains(@CheckForNull java.lang.Object o)
-
-