Class MapEntryToProcedure2<K,V>

java.lang.Object
org.eclipse.collections.impl.block.procedure.MapEntryToProcedure2<K,V>
All Implemented Interfaces:
Serializable, Consumer<Map.Entry<K,V>>, Procedure<Map.Entry<K,V>>

public final class MapEntryToProcedure2<K,V> extends Object implements Procedure<Map.Entry<K,V>>
MapEntryToProcedure2 translates the result of calling entrySet() on a Map, which results in a collection of Map.Entry objects into corresponding Procedure2s. This removes the need to deal with Map.Entry when iterating over an entrySet.
See Also:
  • Constructor Details

    • MapEntryToProcedure2

      public MapEntryToProcedure2(Procedure2<? super K,? super V> procedure)
  • Method Details