Uses of Class
com.google.common.collect.ImmutableSetMultimap.Builder
Package
Description
Collection interfaces and implementations, and other utilities for collections.
-
Uses of ImmutableSetMultimap.Builder in com.google.common.collect
Modifier and TypeMethodDescriptionstatic <K,
V> ImmutableSetMultimap.Builder <K, V> ImmutableSetMultimap.builder()
Returns a newImmutableSetMultimap.Builder
.static <K,
V> ImmutableSetMultimap.Builder <K, V> ImmutableSetMultimap.builderWithExpectedKeys
(int expectedKeys) Returns a new builder with a hint for how many distinct keys are expected to be added.ImmutableSetMultimap.Builder.expectedValuesPerKey
(int expectedValuesPerKey) Provides a hint for how many values will be associated with each key newly added to the builder after this call.ImmutableSetMultimap.Builder.orderKeysBy
(Comparator<? super K> keyComparator) Specifies the ordering of the generated multimap's keys.ImmutableSetMultimap.Builder.orderValuesBy
(Comparator<? super V> valueComparator) Specifies the ordering of the generated multimap's values for each key.Adds an entry to the built multimap if it is not already present.Adds a key-value mapping to the built multimap if it is not already present.Adds entries to the built multimap.