Class MapCollectionExtractorBase
java.lang.Object
org.eclipse.mat.internal.collectionextract.MapCollectionExtractorBase
- All Implemented Interfaces:
ICollectionExtractor
,IMapExtractor
- Direct Known Subclasses:
HashedMapCollectionExtractorBase
,TreeMapCollectionExtractor
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.eclipse.mat.inspections.collectionextract.IMapExtractor
IMapExtractor.EntryObject
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionextractMapEntries
(IObject coll) Extracts the contents of a map (i.e.getCapacity
(IObject coll) Return the capacity of the collection, if applicableboolean
Check if the collection has capacity, e.g.Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.eclipse.mat.inspections.collectionextract.ICollectionExtractor
extractEntries, extractEntryIds, getFillRatio, getNumberOfNotNullElements, getSize, hasExtractableArray, hasExtractableContents, hasFillRatio, hasSize
Methods inherited from interface org.eclipse.mat.inspections.collectionextract.IMapExtractor
getCollisionRatio, hasCollisionRatio
-
Constructor Details
-
MapCollectionExtractorBase
-
-
Method Details
-
hasCapacity
public boolean hasCapacity()Description copied from interface:ICollectionExtractor
Check if the collection has capacity, e.g. ArrayList- Specified by:
hasCapacity
in interfaceICollectionExtractor
- Returns:
- true if
ICollectionExtractor.getCapacity(IObject)
could be called - See Also:
-
getCapacity
Description copied from interface:ICollectionExtractor
Return the capacity of the collection, if applicable- Specified by:
getCapacity
in interfaceICollectionExtractor
- Parameters:
coll
- - the collection to find the capacity of- Returns:
- the capacity in bytes, or null if unavailable
- Throws:
SnapshotException
- if there is a problem retrieving data from the snapshot- See Also:
-
extractMapEntries
Description copied from interface:IMapExtractor
Extracts the contents of a map (i.e. an IObject representing a Map) and provides an Iterator over them- Specified by:
extractMapEntries
in interfaceIMapExtractor
- Parameters:
coll
- - the map to extract contents from- Returns:
- an Iterator over the entries. If the original Map had an Entry object, the content of the iterator would usually be EntryObject
-