Uses of Class
com.google.common.collect.CompactHashMap
Packages that use CompactHashMap
Package
Description
This package contains generic collection interfaces and implementations, and other utilities for
working with collections.
-
Uses of CompactHashMap in com.google.common.collect
Subclasses of CompactHashMap in com.google.common.collectModifier and TypeClassDescription(package private) classCompactLinkedHashMap<K,V> CompactLinkedHashMap is an implementation of a Map with insertion or LRU iteration order, maintained with a doubly linked list through the entries.Methods in com.google.common.collect that return CompactHashMapModifier and TypeMethodDescriptionstatic <K,V> CompactHashMap<K, V> CompactHashMap.create()Creates an emptyCompactHashMapinstance.static <K,V> CompactHashMap<K, V> CompactHashMap.createWithExpectedSize(int expectedSize) Creates aCompactHashMapinstance, with a high enough "initial capacity" that it should holdexpectedSizeelements without growth.