Class ListMap


  • public class ListMap
    extends java.lang.Object
    Static utility map to add map-like functionality to Java.
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static interface  ListMap.Mapper<F,​B>  
    • Constructor Summary

      Constructors 
      Constructor Description
      ListMap()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static <F,​B>
      java.util.List<B>
      map​(java.util.List<F> inputList, ListMap.Mapper<F,​B> mapper)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ListMap

        public ListMap()
    • Method Detail

      • map

        public static <F,​B> java.util.List<B> map​(java.util.List<F> inputList,
                                                        ListMap.Mapper<F,​B> mapper)