Uses of Class
com.google.common.collect.ImmutableListMultimap
Packages that use ImmutableListMultimap
Package
Description
Collection interfaces and implementations, and other utilities for collections.
Utility methods and classes for networking (such as IP addresses and domain names).
Testing utilities.
-
Uses of ImmutableListMultimap in com.google.common.collect
Subclasses of ImmutableListMultimap in com.google.common.collectModifier and TypeClassDescription(package private) class
Implementation ofImmutableListMultimap
with no entries.Fields in com.google.common.collect declared as ImmutableListMultimapModifier and TypeFieldDescriptionprivate ImmutableListMultimap
<V, K> ImmutableListMultimap.inverse
Methods in com.google.common.collect that return ImmutableListMultimapModifier and TypeMethodDescriptionImmutableListMultimap.Builder.build()
Returns a newly-created immutable list multimap.static <K,
V> ImmutableListMultimap <K, V> Returns an immutable multimap containing the same mappings asmultimap
.static <K,
V> ImmutableListMultimap <K, V> Returns an immutable multimap containing the specified entries.(package private) static <K,
V> ImmutableListMultimap <K, V> ImmutableListMultimap.fromMapBuilderEntries
(Collection<? extends Map.Entry<K, ImmutableCollection.Builder<V>>> mapEntries, Comparator<? super V> valueComparator) Creates an ImmutableListMultimap from an asMap.entrySet.(package private) static <K,
V> ImmutableListMultimap <K, V> ImmutableListMultimap.fromMapEntries
(Collection<? extends Map.Entry<? extends K, ? extends Collection<? extends V>>> mapEntries, Comparator<? super V> valueComparator) Creates an ImmutableListMultimap from an asMap.entrySet.final <K> ImmutableListMultimap
<K, E> Creates an indexImmutableListMultimap
that contains the results of applying a specified function to each item in thisFluentIterable
of values.static <K,
V> ImmutableListMultimap <K, V> Creates an indexImmutableListMultimap
that contains the results of applying a specified function to each item in anIterable
of values.static <K,
V> ImmutableListMultimap <K, V> Creates an indexImmutableListMultimap
that contains the results of applying a specified function to each item in anIterator
of values.ImmutableListMultimap.inverse()
Returns an immutable multimap which is the inverse of this one.private ImmutableListMultimap
<V, K> ImmutableListMultimap.invert()
static <K,
V> ImmutableListMultimap <K, V> ImmutableListMultimap.of()
Returns the empty multimap.static <K,
V> ImmutableListMultimap <K, V> ImmutableListMultimap.of
(K k1, V v1) Returns an immutable multimap containing a single entry.static <K,
V> ImmutableListMultimap <K, V> ImmutableListMultimap.of
(K k1, V v1, K k2, V v2) Returns an immutable multimap containing the given entries, in order.static <K,
V> ImmutableListMultimap <K, V> ImmutableListMultimap.of
(K k1, V v1, K k2, V v2, K k3, V v3) Returns an immutable multimap containing the given entries, in order.static <K,
V> ImmutableListMultimap <K, V> ImmutableListMultimap.of
(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) Returns an immutable multimap containing the given entries, in order.static <K,
V> ImmutableListMultimap <K, V> ImmutableListMultimap.of
(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) Returns an immutable multimap containing the given entries, in order.Methods in com.google.common.collect that return types with arguments of type ImmutableListMultimapModifier and TypeMethodDescription(package private) static <T,
K, V> Collector <T, ?, ImmutableListMultimap<K, V>> CollectCollectors.flatteningToImmutableListMultimap
(Function<? super T, ? extends K> keyFunction, Function<? super T, ? extends Stream<? extends V>> valuesFunction) static <T,
K, V> Collector <T, ?, ImmutableListMultimap<K, V>> ImmutableListMultimap.flatteningToImmutableListMultimap
(Function<? super T, ? extends K> keyFunction, Function<? super T, ? extends Stream<? extends V>> valuesFunction) Returns aCollector
accumulating entries into anImmutableListMultimap
.(package private) static <T,
K, V> Collector <T, ?, ImmutableListMultimap<K, V>> CollectCollectors.toImmutableListMultimap
(Function<? super T, ? extends K> keyFunction, Function<? super T, ? extends V> valueFunction) static <T,
K, V> Collector <T, ?, ImmutableListMultimap<K, V>> ImmutableListMultimap.toImmutableListMultimap
(Function<? super T, ? extends K> keyFunction, Function<? super T, ? extends V> valueFunction) Returns aCollector
that accumulates elements into anImmutableListMultimap
whose keys and values are the result of applying the provided mapping functions to the input elements.Methods in com.google.common.collect with parameters of type ImmutableListMultimapModifier and TypeMethodDescriptionstatic <K,
V> ListMultimap <K, V> Multimaps.unmodifiableListMultimap
(ImmutableListMultimap<K, V> delegate) Deprecated.no need to use this -
Uses of ImmutableListMultimap in com.google.common.net
Fields in com.google.common.net declared as ImmutableListMultimapModifier and TypeFieldDescriptionprivate final ImmutableListMultimap
<String, String> MediaType.parameters
private static final ImmutableListMultimap
<String, String> MediaType.UTF_8_CONSTANT_PARAMETERS
Methods in com.google.common.net that return ImmutableListMultimapModifier and TypeMethodDescriptionMediaType.parameters()
Returns a multimap containing the parameters of this media type.Constructors in com.google.common.net with parameters of type ImmutableListMultimap -
Uses of ImmutableListMultimap in com.google.common.testing
Methods in com.google.common.testing that return ImmutableListMultimapModifier and TypeMethodDescription(package private) static <K,
V> ImmutableListMultimap <K, V> FreshValueGenerator.generateImmutableListMultimap
(K key, V value)