Package org.assertj.core.util
Class Maps
- java.lang.Object
-
- org.assertj.core.util.Maps
-
public class Maps extends java.lang.Object
Utility methods related to maps.
-
-
Constructor Summary
Constructors Modifier Constructor Description private
Maps()
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static java.lang.String
format(java.util.Map<?,?> map)
Deprecated.useStandardRepresentation.toStringOf(Map)
instead.static java.lang.String
format(Representation p, java.util.Map<?,?> map)
Deprecated.useStandardRepresentation.toStringOf(Map)
instead.static <K,V>
java.util.Map<K,V>newHashMap(K key, V value)
-
-
-
Method Detail
-
format
@Deprecated public static java.lang.String format(java.util.Map<?,?> map)
Deprecated.useStandardRepresentation.toStringOf(Map)
instead.- Parameters:
map
- the map to format.- Returns:
- the
String
representation of the given map.
-
format
@Deprecated public static java.lang.String format(Representation p, java.util.Map<?,?> map)
Deprecated.useStandardRepresentation.toStringOf(Map)
instead.Returns theString
representation of the given map, ornull
if the given map isnull
.- Parameters:
map
- the map to format.- Returns:
- the
String
representation of the given map.
-
newHashMap
public static <K,V> java.util.Map<K,V> newHashMap(K key, V value)
-
-