Package com.google.common.collect
Class StandardTable.RowMap
- java.lang.Object
-
- java.util.AbstractMap<K,V>
-
- com.google.common.collect.Maps.ViewCachingAbstractMap<R,java.util.Map<C,V>>
-
- com.google.common.collect.StandardTable.RowMap
-
- All Implemented Interfaces:
java.util.Map<R,java.util.Map<C,V>>
- Direct Known Subclasses:
StandardRowSortedTable.RowSortedMap
- Enclosing class:
- StandardTable<R,C,V>
class StandardTable.RowMap extends Maps.ViewCachingAbstractMap<R,java.util.Map<C,V>>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description (package private) class
StandardTable.RowMap.EntrySet
-
Constructor Summary
Constructors Constructor Description RowMap()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
containsKey(java.lang.Object key)
protected java.util.Set<java.util.Map.Entry<R,java.util.Map<C,V>>>
createEntrySet()
Creates the entry set to be returned byMaps.ViewCachingAbstractMap.entrySet()
.java.util.Map<C,V>
get(java.lang.Object key)
java.util.Map<C,V>
remove(java.lang.Object key)
-
Methods inherited from class com.google.common.collect.Maps.ViewCachingAbstractMap
createKeySet, createValues, entrySet, keySet, 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
protected java.util.Set<java.util.Map.Entry<R,java.util.Map<C,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<R,java.util.Map<C,V>>
-
-