Uses of Class
com.google.common.collect.MultimapBuilder.MultimapBuilderWithKeys
Package
Description
Collection interfaces and implementations, and other utilities for collections.
-
Uses of MultimapBuilder.MultimapBuilderWithKeys in com.google.common.collect
Modifier and TypeMethodDescriptionstatic <K0 extends Enum<K0>>
MultimapBuilder.MultimapBuilderWithKeys<K0> Uses anEnumMap
to map keys to value collections.MultimapBuilder.hashKeys()
Uses a hash table to map keys to value collections.MultimapBuilder.hashKeys
(int expectedKeys) Uses a hash table to map keys to value collections, initialized to expect the specified number of keys.MultimapBuilder.linkedHashKeys()
Uses a hash table to map keys to value collections.MultimapBuilder.linkedHashKeys
(int expectedKeys) Uses an hash table to map keys to value collections, initialized to expect the specified number of keys.MultimapBuilder.treeKeys()
Uses a naturally-orderedTreeMap
to map keys to value collections.static <K0 extends @Nullable Object>
MultimapBuilder.MultimapBuilderWithKeys<K0> MultimapBuilder.treeKeys
(Comparator<K0> comparator) Uses aTreeMap
sorted by the specified comparator to map keys to value collections.