|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.bankframe.ei.txnhandler.hostcache.MultiMap
com.bankframe.serives.cache
package instead
public class MultiMap
This data type will order the keys in ascending order according to the Comparable interface.
Constructor Summary | |
---|---|
MultiMap()
Deprecated. |
Method Summary | |
---|---|
Object |
firstKey()
Deprecated. Returns the first (lowest) key currently in this sorted map. |
List |
get(Object key)
Deprecated. This method gets a copy of the list associated with get key. |
Set |
keySet()
Deprecated. This method returns the keys in this set in ascending order. |
void |
put(Object key,
Object val)
Deprecated. This method puts the val in the list associated with the key. |
List |
remove(Object key)
Deprecated. This method removes the set of objects associated with this key. |
Object |
remove(Object key,
int index)
Deprecated. This method removes the object associated with this key that is the i th element. |
Object |
remove(Object key,
Object value)
Deprecated. This method removes the object associated with this key that is equal to the value passed in. |
int |
size()
Deprecated. This method returns the size of the map. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public MultiMap()
Method Detail |
---|
public Object firstKey()
public List get(Object key)
key
- The key to search on.
public Set keySet()
public void put(Object key, Object val)
key
- The key the put the value in.val
- The value to store.public List remove(Object key)
key
- The key to remove.
public Object remove(Object key, int index)
key
- The key to search on.index
- The index to remove.
public Object remove(Object key, Object value)
key
- The key to search on.value
- The value to remove.
public int size()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |