public final class StringMap<V> extends AbstractMap<String,V> implements Serializable
This implementation was derived from Android 4.0's LinkedHashMap.
AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K,V>| 构造器和说明 |
|---|
StringMap() |
| 限定符和类型 | 方法和说明 |
|---|---|
void |
clear() |
boolean |
containsKey(Object key) |
Set<Map.Entry<String,V>> |
entrySet() |
V |
get(Object key) |
Set<String> |
keySet() |
V |
put(String key,
V value) |
V |
remove(Object key) |
int |
size() |
Collection<V> |
values() |
clone, containsValue, equals, hashCode, isEmpty, putAll, toStringpublic boolean containsKey(Object key)
containsKey 在接口中 Map<String,V>containsKey 在类中 AbstractMap<String,V>public Collection<V> values()
Copyright © 2015. All Rights Reserved.