Package org.assertj.guava.data
Class MapEntry<K,V>
- java.lang.Object
-
- org.assertj.guava.data.MapEntry<K,V>
-
- Type Parameters:
K
- key typeV
- value type
@Deprecated public final class MapEntry<K,V> extends java.lang.Object
Deprecated.useorg.assertj.core.data.MapEntry
instead.This is generic version ofMapEntry
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static <K,V>
MapEntry<K,V>entry(K key, V value)
Deprecated.Creates a newMapEntry
.boolean
equals(java.lang.Object obj)
Deprecated.int
hashCode()
Deprecated.java.lang.String
toString()
Deprecated.
-
-
-
Method Detail
-
entry
public static <K,V> MapEntry<K,V> entry(K key, V value)
Deprecated.Creates a newMapEntry
.- Type Parameters:
K
- key typeV
- value type- Parameters:
key
- the key of the entry to create.value
- the value of the entry to create.- Returns:
- the created
MapEntry
.
-
equals
public boolean equals(java.lang.Object obj)
Deprecated.- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
Deprecated.- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toString
in classjava.lang.Object
-
-