Skip navigation links

Oracle® Coherence Java API Reference
Release 3.6.0.0

E15725-01


com.tangosol.util
Class ConverterCollections.ConverterMap

java.lang.Object
  extended by com.tangosol.util.Base
      extended by com.tangosol.util.ConverterCollections.ConverterMap

All Implemented Interfaces:
Serializable, Map
Direct Known Subclasses:
CacheStoreMap, ConverterCollections.ConverterConcurrentMap, ConverterCollections.ConverterInvocableMap, ConverterCollections.ConverterObservableMap, ConverterCollections.ConverterQueryMap, ConverterCollections.ConverterSortedMap
Enclosing class:
ConverterCollections

public static class ConverterCollections.ConverterMap
extends Base
implements Map, Serializable

A Converter Map views an underlying Map through a set of key and value Converters.


Nested Class Summary

 

Nested classes/interfaces inherited from interface java.util.Map
Map.Entry

 

Field Summary
protected  Converter m_convKeyDown
          The Converter used to pass keys down to the Map.
protected  Converter m_convKeyUp
          The Converter used to view keys stored in the Map.
protected  Converter m_convValDown
          The Converter used to pass keys down to the Map.
protected  Converter m_convValUp
          The Converter used to view values stored in the Map.
protected  Map m_map
          The underlying Map.
protected  Set m_set
          The Entry Set.

 

Constructor Summary
ConverterCollections.ConverterMap(Map map, Converter convKeyUp, Converter convKeyDown, Converter convValUp, Converter convValDown)
          Constructor.

 

Method Summary
 void clear()
          Removes all mappings from this map.
 boolean containsKey(Object key)
          Returns true if this map contains a mapping for the specified key.
 boolean containsValue(Object value)
          Returns true if this map maps one or more keys to the specified value.
 Set entrySet()
          Returns a set view of the mappings contained in this map.
 Object get(Object key)
          Returns the value to which this map maps the specified key.
 Converter getConverterKeyDown()
          Return the Converter used to pass keys down to the underlying Map.
 Converter getConverterKeyUp()
          Return the Converter used to view the underlying Map's keys through.
 Converter getConverterValueDown()
          Return the Converter used to pass values down to the underlying Map.
 Converter getConverterValueUp()
          Return the Converter used to view the underlying Map's values through.
 Map getMap()
          Return the underlying Map.
protected  Collection instantiateCollection(Collection col, Converter convUp, Converter convDown)
          Create a Converter Collection.
protected  Set instantiateEntrySet(Set set, Converter convKeyUp, Converter convKeyDown, Converter convValUp, Converter convValDown)
          Create a Converter Entry Set.
protected  Map instantiateMap(Map map, Converter convKeyUp, Converter convKeyDown, Converter convValUp, Converter convValDown)
          Create a Converter Map.
protected  Set instantiateSet(Set set, Converter convUp, Converter convDown)
          Create a Converter Set.
 boolean isEmpty()
          Returns true if this map contains no key-value mappings.
 Set keySet()
          Returns a set view of the keys contained in this map.
 Object put(Object key, Object value)
          Associates the specified value with the specified key in this map.
 void putAll(Map map)
          Copies all of the mappings from the specified map to this map.
 Object remove(Object key)
          Removes the mapping for this key from this map if present.
 int size()
          Returns the number of key-value mappings in this map.
 String toString()
          Return a String description for this Map.
 Collection values()
          Returns a collection view of the values contained in this map.

 

Methods inherited from interface java.util.Map
equals, hashCode

 

Field Detail

m_map

protected Map m_map
The underlying Map.

m_convKeyUp

protected Converter m_convKeyUp
The Converter used to view keys stored in the Map.

m_convKeyDown

protected Converter m_convKeyDown
The Converter used to pass keys down to the Map.

m_convValUp

protected Converter m_convValUp
The Converter used to view values stored in the Map.

m_convValDown

protected Converter m_convValDown
The Converter used to pass keys down to the Map.

m_set

protected transient Set m_set
The Entry Set.

Constructor Detail

ConverterCollections.ConverterMap

public ConverterCollections.ConverterMap(Map map,
                                         Converter convKeyUp,
                                         Converter convKeyDown,
                                         Converter convValUp,
                                         Converter convValDown)
Constructor.
Parameters:
map - the underlying Map
convKeyUp - the Converter to view the underlying Map's keys through
convKeyDown - the Converter to use to pass keys down to the underlying Map
convValUp - the Converter to view the underlying Map's values through
convValDown - the Converter to use to pass values down to the underlying Map

Method Detail

size

public int size()
Returns the number of key-value mappings in this map.
Specified by:
size in interface Map
Returns:
the number of key-value mappings in this map

isEmpty

public boolean isEmpty()
Returns true if this map contains no key-value mappings.
Specified by:
isEmpty in interface Map
Returns:
true if this map contains no key-value mappings

containsKey

public boolean containsKey(Object key)
Returns true if this map contains a mapping for the specified key.
Specified by:
containsKey in interface Map
Parameters:
key - key whose presence in this map is to be tested
Returns:
true if this map contains a mapping for the specified key

containsValue

public boolean containsValue(Object value)
Returns true if this map maps one or more keys to the specified value.
Specified by:
containsValue in interface Map
Parameters:
value - value whose presence in this map is to be tested
Returns:
true if this map maps one or more keys to the specified value.

get

public Object get(Object key)
Returns the value to which this map maps the specified key. Returns null if the map contains no mapping for this key.
Specified by:
get in interface Map
Parameters:
key - key whose associated value is to be returned
Returns:
the value to which this map maps the specified key, or null if the map contains no mapping for this key.
See Also:
Map.containsKey(Object)

put

public Object put(Object key,
                  Object value)
Associates the specified value with the specified key in this map.
Specified by:
put in interface Map
Parameters:
key - key with which the specified value is to be associated
value - value to be associated with the specified key
Returns:
previous value associated with specified key, or null if there was no mapping for key
Throws:
ClassCastException - if the class of the specified key or value prevents it from being stored in this map.

remove

public Object remove(Object key)
Removes the mapping for this key from this map if present.
Specified by:
remove in interface Map
Parameters:
key - key whose mapping is to be removed from the map
Returns:
previous value associated with specified key, or null if there was no mapping for key

putAll

public void putAll(Map map)
Copies all of the mappings from the specified map to this map.
Specified by:
putAll in interface Map
Parameters:
map - Mappings to be stored in this map
Throws:
ClassCastException - if the class of a key or value in the specified map prevents it from being stored in this map

clear

public void clear()
Removes all mappings from this map.
Specified by:
clear in interface Map

keySet

public Set keySet()
Returns a set view of the keys contained in this map. The set is backed by the map, so changes to the map are reflected in the set, and vice-versa.
Specified by:
keySet in interface Map
Returns:
a set view of the keys contained in this map

values

public Collection values()
Returns a collection view of the values contained in this map. The collection is backed by the map, so changes to the map are reflected in the collection, and vice-versa.
Specified by:
values in interface Map
Returns:
a collection view of the values contained in this map

entrySet

public Set entrySet()
Returns a set view of the mappings contained in this map. Each element in the returned set is a Map.Entry. The set is backed by the map, so changes to the map are reflected in the set, and vice-versa.
Specified by:
entrySet in interface Map
Returns:
a set view of the mappings contained in this map

toString

public String toString()
Return a String description for this Map.
Returns:
a String description of the Map

instantiateCollection

protected Collection instantiateCollection(Collection col,
                                           Converter convUp,
                                           Converter convDown)
Create a Converter Collection.
Parameters:
col - the underlying Collection
convUp - the Converter to view the underlying Collection through
convDown - the Converter to pass items down to the underlying Collection through
Returns:
a Converter Collection

instantiateSet

protected Set instantiateSet(Set set,
                             Converter convUp,
                             Converter convDown)
Create a Converter Set.
Parameters:
set - the underlying Set
convUp - the Converter to view the underlying Set through
convDown - the Converter to pass items down to the underlying Set through
Returns:
a Converter Set

instantiateMap

protected Map instantiateMap(Map map,
                             Converter convKeyUp,
                             Converter convKeyDown,
                             Converter convValUp,
                             Converter convValDown)
Create a Converter Map.
Parameters:
map - the underlying Map
convKeyUp - the Converter to view the underlying Map's keys through
convKeyDown - the Converter to use to pass keys down to the underlying Map
convValUp - the Converter to view the underlying Map's values through
convValDown - the Converter to use to pass values down to the underlying Map
Returns:
a Converter Map

instantiateEntrySet

protected Set instantiateEntrySet(Set set,
                                  Converter convKeyUp,
                                  Converter convKeyDown,
                                  Converter convValUp,
                                  Converter convValDown)
Create a Converter Entry Set.
Parameters:
set - the underlying Map Entry Set
convKeyUp - the Converter to view the underlying Map's Entry Set's keys through
convKeyDown - the Converter to use to pass keys down to the underlying Map's Entry Set
convValUp - the Converter to view the underlying Map's Entry Set's values through
convValDown - the Converter to use to pass values down to the underlying Map's Entry Set
Returns:
a Converter Entry Set

getMap

public Map getMap()
Return the underlying Map.
Returns:
the underlying Map

getConverterKeyUp

public Converter getConverterKeyUp()
Return the Converter used to view the underlying Map's keys through.
Returns:
the Converter from the underlying Map's keys

getConverterKeyDown

public Converter getConverterKeyDown()
Return the Converter used to pass keys down to the underlying Map.
Returns:
the Converter to the underlying Map's keys

getConverterValueUp

public Converter getConverterValueUp()
Return the Converter used to view the underlying Map's values through.
Returns:
the Converter from the underlying Map's values

getConverterValueDown

public Converter getConverterValueDown()
Return the Converter used to pass values down to the underlying Map.
Returns:
the Converter to the underlying Map's values

Skip navigation links

Oracle® Coherence Java API Reference
Release 3.6.0.0

E15725-01


Copyright © 2000, 2010, Oracle and/or its affiliates. All rights reserved.