com.jamonapi.utils
Class AppMap

java.lang.Object
  extended byjava.util.AbstractMap
      extended byjava.util.HashMap
          extended bycom.jamonapi.utils.AppMap
All Implemented Interfaces:
java.lang.Cloneable, java.util.Map, java.io.Serializable

public class AppMap
extends java.util.HashMap

Case Insensitive HashMap() - If the maps key is a string then the following keys are all considered equal: myKey
MYKEY
MyKey
... Other than that this class works like a regular HashMap.

See Also:
Serialized Form

Constructor Summary
AppMap()
           
 
Method Summary
 boolean containsKey(java.lang.Object key)
           
protected  java.lang.Object convertKey(java.lang.Object key)
           
static java.util.Map createInstance()
           
static java.lang.Object get(java.util.Map map, java.lang.Object key)
           
 java.lang.Object get(java.lang.Object key)
           
 java.lang.Object put(java.lang.Object key, java.lang.Object object)
           
 
Methods inherited from class java.util.HashMap
clear, clone, containsValue, entrySet, isEmpty, keySet, putAll, remove, size, values
 
Methods inherited from class java.util.AbstractMap
equals, hashCode, toString
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.Map
equals, hashCode
 

Constructor Detail

AppMap

public AppMap()
Method Detail

put

public java.lang.Object put(java.lang.Object key,
                            java.lang.Object object)

containsKey

public boolean containsKey(java.lang.Object key)

get

public java.lang.Object get(java.lang.Object key)

get

public static java.lang.Object get(java.util.Map map,
                                   java.lang.Object key)
                            throws AppBaseException
Throws:
AppBaseException

convertKey

protected java.lang.Object convertKey(java.lang.Object key)

createInstance

public static java.util.Map createInstance()