private class StandardTable.Column extends Maps.ViewCachingAbstractMap<R,V>
| Modifier and Type | Class and Description |
|---|---|
private class |
StandardTable.Column.EntrySet |
private class |
StandardTable.Column.EntrySetIterator |
private class |
StandardTable.Column.KeySet |
private class |
StandardTable.Column.Values |
| Modifier and Type | Method and Description |
|---|---|
boolean |
containsKey(java.lang.Object key) |
(package private) java.util.Set<java.util.Map.Entry<R,V>> |
createEntrySet()
Creates the entry set to be returned by
Maps.ViewCachingAbstractMap.entrySet(). |
(package private) java.util.Set<R> |
createKeySet() |
(package private) java.util.Collection<V> |
createValues() |
V |
get(java.lang.Object key) |
V |
put(R key,
V value) |
V |
remove(java.lang.Object key) |
(package private) boolean |
removeFromColumnIf(Predicate<? super java.util.Map.Entry<R,V>> predicate)
Removes all
Column mappings whose row key and value satisfy the given predicate. |
entrySet, keySet, valuesclear, clone, containsValue, equals, hashCode, isEmpty, putAll, size, toStringfinal C columnKey
Column(C columnKey)
@CheckForNull public V get(@CheckForNull java.lang.Object key)
public boolean containsKey(@CheckForNull
java.lang.Object key)
@CheckForNull public V remove(@CheckForNull java.lang.Object key)
boolean removeFromColumnIf(Predicate<? super java.util.Map.Entry<R,V>> predicate)
Column mappings whose row key and value satisfy the given predicate.java.util.Set<java.util.Map.Entry<R,V>> createEntrySet()
Maps.ViewCachingAbstractMapMaps.ViewCachingAbstractMap.entrySet(). This method is invoked at most
once on a given map, at the time when entrySet is first called.createEntrySet in class Maps.ViewCachingAbstractMap<R,V>java.util.Set<R> createKeySet()
createKeySet in class Maps.ViewCachingAbstractMap<R,V>java.util.Collection<V> createValues()
createValues in class Maps.ViewCachingAbstractMap<R,V>