public class IcedHashMap<K,V> extends Iced implements java.util.concurrent.ConcurrentMap<K,V>, java.lang.Cloneable, java.io.Serializable
| Constructor and Description |
|---|
IcedHashMap() |
| Modifier and Type | Method and 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() |
boolean |
equals(java.lang.Object o) |
V |
get(java.lang.Object key) |
int |
hashCode() |
boolean |
isEmpty() |
java.util.Set<K> |
keySet() |
V |
put(K key,
V value) |
void |
putAll(java.util.Map<? extends K,? extends V> m) |
V |
putIfAbsent(K key,
V value) |
IcedHashMap |
read_impl(AutoBuffer ab)
Implementation of the
Iced serialization protocol, only called by
auto-genned code. |
IcedHashMap<K,V> |
readJSON_impl(AutoBuffer ab)
Implementation of the
Iced serialization protocol, only called by
auto-genned code. |
V |
remove(java.lang.Object key) |
boolean |
remove(java.lang.Object key,
java.lang.Object value) |
V |
replace(K key,
V value) |
boolean |
replace(K key,
V oldValue,
V newValue) |
int |
size() |
java.util.Collection<V> |
values() |
AutoBuffer |
write_impl(AutoBuffer ab)
Implementation of the
Iced serialization protocol, only called by
auto-genned code. |
DocGen.HTML |
writeHTML_impl(DocGen.HTML ab)
Implementation of the
Iced serialization protocol, only called by
auto-genned code. |
AutoBuffer |
writeJSON_impl(AutoBuffer ab)
Implementation of the
Iced serialization protocol, only called by
auto-genned code. |
clone, frozenType, read, readExternal, readJSON, toJsonString, write, writeExternal, writeHTML, writeJSONpublic boolean remove(java.lang.Object key,
java.lang.Object value)
public boolean containsKey(java.lang.Object key)
public boolean containsValue(java.lang.Object value)
public boolean equals(java.lang.Object o)
public int hashCode()
public AutoBuffer write_impl(AutoBuffer ab)
IcedIced serialization protocol, only called by
auto-genned code. Not intended to be called by user code. Override only
for custom Iced serializers.write_impl in interface Freezablewrite_impl in class Icedab - AutoBuffer to write this object to.AutoBuffer for flow-coding.public IcedHashMap read_impl(AutoBuffer ab)
IcedIced serialization protocol, only called by
auto-genned code. Not intended to be called by user code. Override only
for custom Iced serializers.public AutoBuffer writeJSON_impl(AutoBuffer ab)
IcedIced serialization protocol, only called by
auto-genned code. Not intended to be called by user code. Override only
for custom Iced serializers.writeJSON_impl in interface FreezablewriteJSON_impl in class Icedab - AutoBuffer to write this object to.AutoBuffer for flow-coding.public IcedHashMap<K,V> readJSON_impl(AutoBuffer ab)
IcedIced serialization protocol, only called by
auto-genned code. Not intended to be called by user code. Override only
for custom Iced serializers.readJSON_impl in interface FreezablereadJSON_impl in class Icedab - AutoBuffer to read this object from.public DocGen.HTML writeHTML_impl(DocGen.HTML ab)
IcedIced serialization protocol, only called by
auto-genned code. Not intended to be called by user code. Override only
for custom Iced serializers.writeHTML_impl in interface FreezablewriteHTML_impl in class Icedab - html to write object to.