Uses of Class
com.google.common.collect.ImmutableSetMultimap
Packages that use ImmutableSetMultimap
Package
Description
Collection interfaces and implementations, and other utilities for collections.
Testing utilities.
Concurrency utilities.
-
Uses of ImmutableSetMultimap in com.google.common.collect
Subclasses of ImmutableSetMultimap in com.google.common.collectModifier and TypeClassDescription(package private) classImplementation ofImmutableListMultimapwith no entries.Fields in com.google.common.collect declared as ImmutableSetMultimapModifier and TypeFieldDescriptionprivate ImmutableSetMultimap<V, K> ImmutableSetMultimap.inverseprivate final ImmutableSetMultimap<K, V> ImmutableSetMultimap.EntrySet.multimapprivate ImmutableSetMultimap<K, V> ImmutableMap.multimapViewFields in com.google.common.collect with type parameters of type ImmutableSetMultimapModifier and TypeFieldDescription(package private) static final Serialization.FieldSetter<? super ImmutableSetMultimap<?, ?>> ImmutableSetMultimap.SetFieldSettersHolder.EMPTY_SET_FIELD_SETTERMethods in com.google.common.collect that return ImmutableSetMultimapModifier and TypeMethodDescriptionImmutableMap.asMultimap()Returns a multimap view of the map.ImmutableSetMultimap.Builder.build()Returns a newly-created immutable set multimap.static <K,V> ImmutableSetMultimap <K, V> Returns an immutable set multimap containing the same mappings asmultimap.private static <K,V> ImmutableSetMultimap <K, V> ImmutableSetMultimap.copyOf(Multimap<? extends K, ? extends V> multimap, Comparator<? super V> valueComparator) static <K,V> ImmutableSetMultimap <K, V> Returns an immutable multimap containing the specified entries.(package private) static <K,V> ImmutableSetMultimap <K, V> ImmutableSetMultimap.fromMapBuilderEntries(Collection<? extends Map.Entry<K, ImmutableCollection.Builder<V>>> mapEntries, Comparator<? super V> valueComparator) Creates an ImmutableSetMultimap from a map to builders.(package private) static <K,V> ImmutableSetMultimap <K, V> ImmutableSetMultimap.fromMapEntries(Collection<? extends Map.Entry<? extends K, ? extends Collection<? extends V>>> mapEntries, Comparator<? super V> valueComparator) Creates an ImmutableSetMultimap from an asMap.entrySet.ImmutableSetMultimap.inverse()Returns an immutable multimap which is the inverse of this one.private ImmutableSetMultimap<V, K> ImmutableSetMultimap.invert()static <K,V> ImmutableSetMultimap <K, V> ImmutableSetMultimap.of()Returns the empty multimap.static <K,V> ImmutableSetMultimap <K, V> ImmutableSetMultimap.of(K k1, V v1) Returns an immutable multimap containing a single entry.static <K,V> ImmutableSetMultimap <K, V> ImmutableSetMultimap.of(K k1, V v1, K k2, V v2) Returns an immutable multimap containing the given entries, in order.static <K,V> ImmutableSetMultimap <K, V> ImmutableSetMultimap.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> ImmutableSetMultimap <K, V> ImmutableSetMultimap.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> ImmutableSetMultimap <K, V> ImmutableSetMultimap.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 ImmutableSetMultimapModifier and TypeMethodDescription(package private) static <T,K, V> Collector <T, ?, ImmutableSetMultimap<K, V>> CollectCollectors.flatteningToImmutableSetMultimap(Function<? super T, ? extends K> keyFunction, Function<? super T, ? extends Stream<? extends V>> valuesFunction) static <T,K, V> Collector <T, ?, ImmutableSetMultimap<K, V>> ImmutableSetMultimap.flatteningToImmutableSetMultimap(Function<? super T, ? extends K> keyFunction, Function<? super T, ? extends Stream<? extends V>> valuesFunction) Returns aCollectoraccumulating entries into anImmutableSetMultimap.(package private) static <T,K, V> Collector <T, ?, ImmutableSetMultimap<K, V>> CollectCollectors.toImmutableSetMultimap(Function<? super T, ? extends K> keyFunction, Function<? super T, ? extends V> valueFunction) static <T,K, V> Collector <T, ?, ImmutableSetMultimap<K, V>> ImmutableSetMultimap.toImmutableSetMultimap(Function<? super T, ? extends K> keyFunction, Function<? super T, ? extends V> valueFunction) Returns aCollectorthat accumulates elements into anImmutableSetMultimapwhose 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 ImmutableSetMultimapModifier and TypeMethodDescriptionstatic <K,V> SetMultimap <K, V> Multimaps.unmodifiableSetMultimap(ImmutableSetMultimap<K, V> delegate) Deprecated.no need to use thisConstructors in com.google.common.collect with parameters of type ImmutableSetMultimap -
Uses of ImmutableSetMultimap in com.google.common.testing
Methods in com.google.common.testing that return ImmutableSetMultimapModifier and TypeMethodDescription(package private) static <K,V> ImmutableSetMultimap <K, V> FreshValueGenerator.generateImmutableSetMultimap(K key, V value) -
Uses of ImmutableSetMultimap in com.google.common.util.concurrent
Methods in com.google.common.util.concurrent that return ImmutableSetMultimapModifier and TypeMethodDescription(package private) ImmutableSetMultimap<Service.State, Service> ServiceManager.ServiceManagerState.servicesByState()ServiceManager.servicesByState()Provides a snapshot of the current state of all the services under management.