K
- The type of the Key component of the Entry objects to be transformedVI
- The type of the Value component of the Entry objects to be transformedVO
- The type of the Value component that the Entry objects are to be transformed intopublic class MapEntryValueTransformer<K,VI,VO> extends Transformer<java.util.Map.Entry<K,VI>,java.util.Map.Entry<K,VO>>
Constructor and Description |
---|
MapEntryValueTransformer(Transformer<VI,VO> valueTransformer)
Creates the MapEntryValueTransformer
|
Modifier and Type | Method and Description |
---|---|
java.util.Map.Entry<K,VO> |
transform(java.util.Map.Entry<K,VI> from)
Returns an object of class <S2> that is in some sense equivalent to the given from object
|
public MapEntryValueTransformer(Transformer<VI,VO> valueTransformer)
valueTransformer
- The transformer for transforming the Value components of the Entry objects to be transformedpublic java.util.Map.Entry<K,VO> transform(java.util.Map.Entry<K,VI> from)
Transformer