Class MapUtils
- java.lang.Object
-
- io.github.handsomecoder.utils.map.MapUtils
-
public class MapUtils extends Object
The type Map utils.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <K,V>
Map<K,V>of(K k1, V v1, K k2, V v2)Of map.static <K,V>
Map<K,V>of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4)Of map.
-
-
-
Method Detail
-
of
public static <K,V> Map<K,V> of(K k1, V v1, K k2, V v2)
Of map.- Type Parameters:
K- the type parameterV- the type parameter- Parameters:
k1- the k 1v1- the v 1k2- the k 2v2- the v 2- Returns:
- map map
-
of
public static <K,V> Map<K,V> of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4)
Of map.- Type Parameters:
K- the type parameterV- the type parameter- Parameters:
k1- the k 1v1- the v 1k2- the k 2v2- the v 2k3- the k 3v3- the v 3k4- the k 4v4- the v 4- Returns:
- map map
-
-