Class MapEntryToProcedure2<K,​V>

  • All Implemented Interfaces:
    java.io.Serializable, java.util.function.Consumer<java.util.Map.Entry<K,​V>>, Procedure<java.util.Map.Entry<K,​V>>

    public final class MapEntryToProcedure2<K,​V>
    extends java.lang.Object
    implements Procedure<java.util.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:
    Serialized Form
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void value​(java.util.Map.Entry<K,​V> entry)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.util.function.Consumer

        andThen
      • Methods inherited from interface org.eclipse.collections.api.block.procedure.Procedure

        accept
    • Constructor Detail

      • MapEntryToProcedure2

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

      • value

        public void value​(java.util.Map.Entry<K,​V> entry)
        Specified by:
        value in interface Procedure<K>