Uses of Interface
com.google.common.collect.Maps.EntryTransformer
Package
Description
Collection interfaces and implementations, and other utilities for collections.
-
Uses of Maps.EntryTransformer in com.google.common.collect
Modifier and TypeMethodDescriptionstatic <K extends @Nullable Object,
V1 extends @Nullable Object, V2 extends @Nullable Object>
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 extends @Nullable Object,
V1 extends @Nullable Object, V2 extends @Nullable Object>
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 extends @Nullable Object,
V1 extends @Nullable Object, V2 extends @Nullable Object>
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.static <K extends @Nullable Object,
V1 extends @Nullable Object, V2 extends @Nullable Object>
ListMultimap<K, V2> Multimaps.transformEntries
(ListMultimap<K, V1> fromMap, Maps.EntryTransformer<? super K, ? super V1, V2> transformer) Returns a view of aListMultimap
whose values are derived from the original multimap's entries.static <K extends @Nullable Object,
V1 extends @Nullable Object, V2 extends @Nullable Object>
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.