Uses of Class
com.google.common.collect.MultimapBuilder.MultimapBuilderWithKeys
Packages that use MultimapBuilder.MultimapBuilderWithKeys
Package
Description
This package contains generic collection interfaces and implementations, and other utilities for
working with collections.
-
Uses of MultimapBuilder.MultimapBuilderWithKeys in com.google.common.collect
Methods in com.google.common.collect that return MultimapBuilder.MultimapBuilderWithKeysModifier and TypeMethodDescriptionstatic <K0 extends Enum<K0>>
MultimapBuilder.MultimapBuilderWithKeys<K0>Uses anEnumMap
to map keys to value collections.static MultimapBuilder.MultimapBuilderWithKeys<@Nullable Object>
MultimapBuilder.hashKeys()
Uses a hash table to map keys to value collections.static MultimapBuilder.MultimapBuilderWithKeys<@Nullable Object>
MultimapBuilder.hashKeys
(int expectedKeys) Uses a hash table to map keys to value collections, initialized to expect the specified number of keys.static MultimapBuilder.MultimapBuilderWithKeys<@Nullable Object>
MultimapBuilder.linkedHashKeys()
Uses a hash table to map keys to value collections.static MultimapBuilder.MultimapBuilderWithKeys<@Nullable Object>
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.