Class MapUtils

java.lang.Object
me.datafox.dfxengine.utils.MapUtils

public class MapUtils extends Object
Utilities for manipulating maps.
  • Constructor Details

    • MapUtils

      public MapUtils()
  • Method Details

    • reverseMap

      public static <K, V> Map<V,K> reverseMap(Map<K,V> map)
      Reverses a map.
      Type Parameters:
      K - map key type
      V - map value type
      Parameters:
      map - map to be reversed
      Returns:
      map with all keys and values reversed
      Throws:
      IllegalArgumentException - if the values of the map are not all distinct