Uses of Class
com.google.common.collect.ImmutableListMultimap.Builder
Packages that use ImmutableListMultimap.Builder
Package
Description
Collection interfaces and implementations, and other utilities for collections.
-
Uses of ImmutableListMultimap.Builder in com.google.common.collect
Methods in com.google.common.collect that return ImmutableListMultimap.BuilderModifier and TypeMethodDescriptionstatic <K,
V> ImmutableListMultimap.Builder <K, V> ImmutableListMultimap.builder()
Returns a new builder.ImmutableListMultimap.Builder.orderKeysBy
(Comparator<? super K> keyComparator) Specifies the ordering of the generated multimap's keys.ImmutableListMultimap.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.ImmutableListMultimap.Builder.putAll
(Iterable<? extends Map.Entry<? extends K, ? extends V>> entries) Adds entries to the built multimap.