public abstract class IcedHashMapBase<K,V> extends Iced implements java.util.Map<K,V>, java.lang.Cloneable, java.io.Serializable
Constructor and Description |
---|
IcedHashMapBase() |
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() |
protected abstract java.util.Map<K,V> |
init() |
boolean |
isEmpty() |
java.util.Set<K> |
keySet() |
protected abstract java.util.Map<K,V> |
map() |
V |
put(K key,
V value) |
void |
putAll(java.util.Map<? extends K,? extends V> m) |
IcedHashMapBase |
read_impl(AutoBuffer ab)
Helper for serialization - fills the mymap() from K-V pairs in the AutoBuffer object
|
IcedHashMapBase<K,V> |
readJSON_impl(AutoBuffer ab)
Implementation of the
Iced serialization protocol, only called by
auto-genned code. |
V |
remove(java.lang.Object key) |
int |
size() |
java.util.Collection<V> |
values() |
AutoBuffer |
write_impl(AutoBuffer 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, writeJSON
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)
Iced
Iced
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 Freezable
write_impl
in class Iced
ab
- AutoBuffer
to write this object to.AutoBuffer
for flow-coding.public IcedHashMapBase read_impl(AutoBuffer ab)
public AutoBuffer writeJSON_impl(AutoBuffer ab)
Iced
Iced
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 Freezable
writeJSON_impl
in class Iced
ab
- AutoBuffer
to write this object to.AutoBuffer
for flow-coding.public IcedHashMapBase<K,V> readJSON_impl(AutoBuffer ab)
Iced
Iced
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 Freezable
readJSON_impl
in class Iced
ab
- AutoBuffer
to read this object from.