| Package | Description | 
|---|---|
| com.google.common.collect | This package contains generic collection interfaces and implementations, and other utilities for
 working with collections. | 
| Modifier and Type | Method and Description | 
|---|---|
| static <K,V1,V2> ListMultimap<K,V2> | Multimaps. transformEntries(ListMultimap<K,V1> fromMap,
                Maps.EntryTransformer<? super K,? super V1,V2> transformer)Returns a view of a  ListMultimapwhose values are derived from the original multimap's
 entries. | 
| static <K,V1,V2> Map<K,V2> | Maps. transformEntries(Map<K,V1> fromMap,
                Maps.EntryTransformer<? super K,? super V1,V2> transformer)Returns a view of a map whose values are derived from the original map's entries. | 
| static <K,V1,V2> Multimap<K,V2> | Multimaps. transformEntries(Multimap<K,V1> fromMap,
                Maps.EntryTransformer<? super K,? super V1,V2> transformer)Returns a view of a multimap whose values are derived from the original multimap's entries. | 
| static <K,V1,V2> NavigableMap<K,V2> | Maps. transformEntries(NavigableMap<K,V1> fromMap,
                Maps.EntryTransformer<? super K,? super V1,V2> transformer)Returns a view of a navigable map whose values are derived from the original navigable map's
 entries. | 
| static <K,V1,V2> SortedMap<K,V2> | Maps. transformEntries(SortedMap<K,V1> fromMap,
                Maps.EntryTransformer<? super K,? super V1,V2> transformer)Returns a view of a sorted map whose values are derived from the original sorted map's entries. | 
Copyright © 2010–2019. All rights reserved.