Package org.powermock.core
Class ListMap<K,V>
- java.lang.Object
-
- org.powermock.core.ListMap<K,V>
-
- All Implemented Interfaces:
java.util.Map<K,V>
public class ListMap<K,V> extends java.lang.Object implements java.util.Map<K,V>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static class
ListMap.SimpleEntry<K,V>
-
Constructor Summary
Constructors Constructor Description ListMap()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
boolean
containsKey(java.lang.Object key)
boolean
containsValue(java.lang.Object value)
java.util.Set<java.util.Map.Entry<K,V>>
entrySet()
V
get(java.lang.Object key)
boolean
isEmpty()
java.util.Set<K>
keySet()
V
put(K key, V value)
void
putAll(java.util.Map<? extends K,? extends V> t)
V
remove(java.lang.Object key)
int
size()
java.util.Collection<V>
values()
-