Package com.google.common.collect
Class StandardTable.ColumnMap
- java.lang.Object
-
- java.util.AbstractMap<K,V>
-
- com.google.common.collect.Maps.ViewCachingAbstractMap<C,java.util.Map<R,V>>
-
- com.google.common.collect.StandardTable.ColumnMap
-
- All Implemented Interfaces:
java.util.Map<C,java.util.Map<R,V>>
- Enclosing class:
- StandardTable<R,C,V>
private class StandardTable.ColumnMap extends Maps.ViewCachingAbstractMap<C,java.util.Map<R,V>>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description (package private) class
StandardTable.ColumnMap.ColumnMapEntrySet
private class
StandardTable.ColumnMap.ColumnMapValues
-
Constructor Summary
Constructors Modifier Constructor Description private
ColumnMap()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
containsKey(java.lang.Object key)
java.util.Set<java.util.Map.Entry<C,java.util.Map<R,V>>>
createEntrySet()
Creates the entry set to be returned byMaps.ViewCachingAbstractMap.entrySet()
.(package private) java.util.Collection<java.util.Map<R,V>>
createValues()
java.util.Map<R,V>
get(java.lang.Object key)
java.util.Set<C>
keySet()
java.util.Map<R,V>
remove(java.lang.Object key)
-
Methods inherited from class com.google.common.collect.Maps.ViewCachingAbstractMap
createKeySet, entrySet, values
-
Methods inherited from class java.util.AbstractMap
clear, clone, containsValue, equals, hashCode, isEmpty, put, putAll, size, toString
-
-
-
-
Method Detail
-
containsKey
public boolean containsKey(java.lang.Object key)
-
createEntrySet
public java.util.Set<java.util.Map.Entry<C,java.util.Map<R,V>>> createEntrySet()
Description copied from class:Maps.ViewCachingAbstractMap
Creates the entry set to be returned byMaps.ViewCachingAbstractMap.entrySet()
. This method is invoked at most once on a given map, at the time whenentrySet
is first called.- Specified by:
createEntrySet
in classMaps.ViewCachingAbstractMap<C,java.util.Map<R,V>>
-
keySet
public java.util.Set<C> keySet()
-
createValues
java.util.Collection<java.util.Map<R,V>> createValues()
- Overrides:
createValues
in classMaps.ViewCachingAbstractMap<C,java.util.Map<R,V>>
-
-