public class TCharLongMapDecorator
extends java.util.AbstractMap<java.lang.Character,java.lang.Long>
implements java.util.Map<java.lang.Character,java.lang.Long>, java.io.Externalizable, java.lang.Cloneable
Wrapper class to make a TCharLongMap conform to the java.util.Map API. This class simply decorates an underlying TCharLongMap and translates the Object-based APIs into their Trove primitive analogs.
Note that wrapping and unwrapping primitive values is extremely inefficient. If possible, users of this class should override the appropriate methods in this class and use a table of canonical values.
Created: Mon Sep 23 22:07:40 PDT 2002
| Modifier and Type | Field and Description |
|---|---|
protected TCharLongMap |
_map
the wrapped primitive map
|
| Constructor and Description |
|---|
TCharLongMapDecorator()
FOR EXTERNALIZATION ONLY!!
|
TCharLongMapDecorator(TCharLongMap map)
Creates a wrapper that decorates the specified primitive map.
|
| Modifier and Type | Method and Description |
|---|---|
void |
clear()
Empties the map.
|
boolean |
containsKey(java.lang.Object key)
Checks for the present of key in the keys of the map.
|
boolean |
containsValue(java.lang.Object val)
Checks for the presence of val in the values of the map.
|
java.util.Set<java.util.Map.Entry<java.lang.Character,java.lang.Long>> |
entrySet()
Returns a Set view on the entries of the map.
|
java.lang.Long |
get(java.lang.Object key)
Retrieves the value for key
|
TCharLongMap |
getMap()
Returns a reference to the map wrapped by this decorator.
|
boolean |
isEmpty()
Indicates whether map has any entries.
|
java.lang.Long |
put(java.lang.Character key,
java.lang.Long value)
Inserts a key/value pair into the map.
|
void |
putAll(java.util.Map<? extends java.lang.Character,? extends java.lang.Long> map)
Copies the key/value mappings in map into this map.
|
void |
readExternal(java.io.ObjectInput in) |
java.lang.Long |
remove(java.lang.Object key)
Deletes a key/value pair from the map.
|
int |
size()
Returns the number of entries in the map.
|
protected char |
unwrapKey(java.lang.Object key)
Unwraps a key
|
protected long |
unwrapValue(java.lang.Object value)
Unwraps a value
|
protected java.lang.Character |
wrapKey(char k)
Wraps a key
|
protected java.lang.Long |
wrapValue(long k)
Wraps a value
|
void |
writeExternal(java.io.ObjectOutput out) |
clone, equals, hashCode, keySet, toString, valuesprotected TCharLongMap _map
public TCharLongMapDecorator()
public TCharLongMapDecorator(TCharLongMap map)
map - the TCharLongMap to wrap.public TCharLongMap getMap()
public java.lang.Long put(java.lang.Character key,
java.lang.Long value)
put in interface java.util.Map<java.lang.Character,java.lang.Long>put in class java.util.AbstractMap<java.lang.Character,java.lang.Long>key - an Object valuevalue - an Object valuepublic java.lang.Long get(java.lang.Object key)
get in interface java.util.Map<java.lang.Character,java.lang.Long>get in class java.util.AbstractMap<java.lang.Character,java.lang.Long>key - an Object valuepublic void clear()
clear in interface java.util.Map<java.lang.Character,java.lang.Long>clear in class java.util.AbstractMap<java.lang.Character,java.lang.Long>public java.lang.Long remove(java.lang.Object key)
remove in interface java.util.Map<java.lang.Character,java.lang.Long>remove in class java.util.AbstractMap<java.lang.Character,java.lang.Long>key - an Object valuepublic java.util.Set<java.util.Map.Entry<java.lang.Character,java.lang.Long>> entrySet()
entrySet in interface java.util.Map<java.lang.Character,java.lang.Long>entrySet in class java.util.AbstractMap<java.lang.Character,java.lang.Long>Set valuepublic boolean containsValue(java.lang.Object val)
containsValue in interface java.util.Map<java.lang.Character,java.lang.Long>containsValue in class java.util.AbstractMap<java.lang.Character,java.lang.Long>val - an Object valueboolean valuepublic boolean containsKey(java.lang.Object key)
containsKey in interface java.util.Map<java.lang.Character,java.lang.Long>containsKey in class java.util.AbstractMap<java.lang.Character,java.lang.Long>key - an Object valueboolean valuepublic int size()
size in interface java.util.Map<java.lang.Character,java.lang.Long>size in class java.util.AbstractMap<java.lang.Character,java.lang.Long>public boolean isEmpty()
isEmpty in interface java.util.Map<java.lang.Character,java.lang.Long>isEmpty in class java.util.AbstractMap<java.lang.Character,java.lang.Long>public void putAll(java.util.Map<? extends java.lang.Character,? extends java.lang.Long> map)
putAll in interface java.util.Map<java.lang.Character,java.lang.Long>putAll in class java.util.AbstractMap<java.lang.Character,java.lang.Long>map - a Map valueprotected java.lang.Character wrapKey(char k)
k - key in the underlying mapprotected char unwrapKey(java.lang.Object key)
key - wrapped keyprotected java.lang.Long wrapValue(long k)
k - value in the underlying mapprotected long unwrapValue(java.lang.Object value)
value - wrapped valuepublic void readExternal(java.io.ObjectInput in)
throws java.io.IOException,
java.lang.ClassNotFoundException
readExternal in interface java.io.Externalizablejava.io.IOExceptionjava.lang.ClassNotFoundExceptionpublic void writeExternal(java.io.ObjectOutput out)
throws java.io.IOException
writeExternal in interface java.io.Externalizablejava.io.IOException