Uses of Interface
com.google.common.collect.Maps.EntryTransformer
Packages that use Maps.EntryTransformer
Package
Description
Collection interfaces and implementations, and other utilities for collections.
-
Uses of Maps.EntryTransformer in com.google.common.collect
Fields in com.google.common.collect declared as Maps.EntryTransformerModifier and TypeFieldDescription(package private) final Maps.EntryTransformer
<? super K, ? super V1, V2> Maps.TransformedEntriesMap.transformer
(package private) final Maps.EntryTransformer
<? super K, ? super V1, V2> Multimaps.TransformedEntriesMultimap.transformer
Methods in com.google.common.collect that return Maps.EntryTransformerModifier and TypeMethodDescription(package private) static <K,
V1, V2>
Maps.EntryTransformer<K, V1, V2> Maps.asEntryTransformer
(Function<? super V1, V2> function) Views a function as an entry transformer that ignores the entry key.Methods in com.google.common.collect with parameters of type Maps.EntryTransformerModifier and TypeMethodDescriptionMaps.asEntryToEntryFunction
(Maps.EntryTransformer<? super K, ? super V1, V2> transformer) Views an entry transformer as a function from entries to entries.Maps.asEntryToValueFunction
(Maps.EntryTransformer<? super K, ? super V1, V2> transformer) Views an entry transformer as a function fromEntry
to values.(package private) static <K,
V1, V2>
Function<V1, V2> Maps.asValueToValueFunction
(Maps.EntryTransformer<? super K, V1, V2> transformer, K key) 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>
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.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 aListMultimap
whose values are derived from the original multimap'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.(package private) static <V2,
K, V1>
Map.Entry<K, V2> Maps.transformEntry
(Maps.EntryTransformer<? super K, ? super V1, V2> transformer, Map.Entry<K, V1> entry) Returns a view of an entry transformed by the specified transformer.Constructors in com.google.common.collect with parameters of type Maps.EntryTransformerModifierConstructorDescription(package private)
TransformedEntriesListMultimap
(ListMultimap<K, V1> fromMultimap, Maps.EntryTransformer<? super K, ? super V1, V2> transformer) (package private)
TransformedEntriesMap
(Map<K, V1> fromMap, Maps.EntryTransformer<? super K, ? super V1, V2> transformer) (package private)
TransformedEntriesMultimap
(Multimap<K, V1> fromMultimap, Maps.EntryTransformer<? super K, ? super V1, V2> transformer) (package private)
TransformedEntriesNavigableMap
(NavigableMap<K, V1> fromMap, Maps.EntryTransformer<? super K, ? super V1, V2> transformer) (package private)
TransformedEntriesSortedMap
(SortedMap<K, V1> fromMap, Maps.EntryTransformer<? super K, ? super V1, V2> transformer)