Java com.google.common.collect Multimaps fields, constructors, methods, implement or subclass

Example usage for Java com.google.common.collect Multimaps fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.common.collect Multimaps.

The text is from its open source code.

Method

Map>asMap(ListMultimap multimap)
Returns ListMultimap#asMap multimap.asMap() , with its type corrected from Map> to Map> .
Map>asMap(SetMultimap multimap)
Returns SetMultimap#asMap multimap.asMap() , with its type corrected from Map> to Map> .
Map>asMap(SortedSetMultimap multimap)
Returns SortedSetMultimap#asMap multimap.asMap() , with its type corrected from Map> to Map> .
Map>asMap(Multimap multimap)
Returns Multimap#asMap multimap.asMap() .
MultimapfilterEntries(Multimap unfiltered, Predicate> entryPredicate)
Returns a multimap containing the mappings in unfiltered that satisfy a predicate.
SetMultimapfilterEntries(SetMultimap unfiltered, Predicate> entryPredicate)
Returns a multimap containing the mappings in unfiltered that satisfy a predicate.
MultimapfilterKeys(Multimap unfiltered, final Predicate keyPredicate)
Returns a multimap containing the mappings in unfiltered whose keys satisfy a predicate.
SetMultimapfilterKeys(SetMultimap unfiltered, final Predicate keyPredicate)
Returns a multimap containing the mappings in unfiltered whose keys satisfy a predicate.
ListMultimapfilterKeys(ListMultimap unfiltered, final Predicate keyPredicate)
Returns a multimap containing the mappings in unfiltered whose keys satisfy a predicate.
MultimapfilterValues(Multimap unfiltered, final Predicate valuePredicate)
Returns a multimap containing the mappings in unfiltered whose values satisfy a predicate.
SetMultimapfilterValues(SetMultimap unfiltered, final Predicate valuePredicate)
Returns a multimap containing the mappings in unfiltered whose values satisfy a predicate.
SetMultimapforMap(Map map)
Returns a multimap view of the specified map.
ImmutableListMultimapindex(Iterable values, Function keyFunction)
Creates an index ImmutableListMultimap that contains the results of applying a specified function to each item in an Iterable of values.
ImmutableListMultimapindex(Iterator values, Function keyFunction)
Creates an index ImmutableListMultimap that contains the results of applying a specified function to each item in an Iterator of values.
MinvertFrom(Multimap source, M dest)
Copies each key-value mapping in source into dest , with its key and value reversed.
ListMultimapnewListMultimap(Map> map, final Supplier> factory)
Creates a new ListMultimap that uses the provided map and factory.
MultimapnewMultimap(Map> map, final Supplier> factory)
Creates a new Multimap backed by map , whose internal value collections are generated by factory .
SetMultimapnewSetMultimap(Map> map, final Supplier> factory)
Creates a new SetMultimap that uses the provided map and factory.
SortedSetMultimapnewSortedSetMultimap(Map> map, final Supplier> factory)
Creates a new SortedSetMultimap that uses the provided map and factory.
ListMultimapsynchronizedListMultimap(ListMultimap multimap)
Returns a synchronized (thread-safe) ListMultimap backed by the specified multimap.
MultimapsynchronizedMultimap(Multimap multimap)
Returns a synchronized (thread-safe) multimap backed by the specified multimap.
SetMultimapsynchronizedSetMultimap(SetMultimap multimap)
Returns a synchronized (thread-safe) SetMultimap backed by the specified multimap.
MultimaptransformEntries(Multimap fromMap, EntryTransformer transformer)
Returns a view of a multimap whose values are derived from the original multimap's entries.
ListMultimaptransformEntries(ListMultimap fromMap, EntryTransformer transformer)
Returns a view of a ListMultimap whose values are derived from the original multimap's entries.
MultimaptransformValues(Multimap fromMultimap, final Function function)
Returns a view of a multimap where each value is transformed by a function.
ListMultimaptransformValues(ListMultimap fromMultimap, final Function function)
Returns a view of a ListMultimap where each value is transformed by a function.
ListMultimapunmodifiableListMultimap(ListMultimap delegate)
Returns an unmodifiable view of the specified ListMultimap .
ListMultimapunmodifiableListMultimap(ImmutableListMultimap delegate)
Simply returns its argument.
MultimapunmodifiableMultimap(Multimap delegate)
Returns an unmodifiable view of the specified multimap.
MultimapunmodifiableMultimap(ImmutableMultimap delegate)
Simply returns its argument.
SetMultimapunmodifiableSetMultimap(SetMultimap delegate)
Returns an unmodifiable view of the specified SetMultimap .
SetMultimapunmodifiableSetMultimap(ImmutableSetMultimap delegate)
Simply returns its argument.
SortedSetMultimapunmodifiableSortedSetMultimap(SortedSetMultimap delegate)
Returns an unmodifiable view of the specified SortedSetMultimap .