oracle.jbo.common
Class WeakHashlist
java.lang.Object
oracle.adfnmc.java.util.Dictionary
oracle.jbo.common.WeakHashtable
oracle.jbo.common.WeakHashlist
public class WeakHashlist
- extends WeakHashtable
|
Method Summary |
void |
clear()
|
void |
doneList()
|
WeakVector |
getList()
|
java.lang.Object |
put(java.lang.Object key,
java.lang.Object value)
Associate key with value in this Dictionary. |
java.lang.Object |
remove(java.lang.Object key)
Remove the key/value pair with the specified key from this Dictionary. |
java.lang.Object |
removeStrict(java.lang.Object key,
java.lang.Object value)
|
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
WeakHashlist
public WeakHashlist(int initialCapacity,
float loadFactor)
WeakHashlist
public WeakHashlist(int initialCapacity)
WeakHashlist
public WeakHashlist()
getList
public WeakVector getList()
doneList
public void doneList()
put
public java.lang.Object put(java.lang.Object key,
java.lang.Object value)
- Description copied from class:
Dictionary
- Associate
key with value in this Dictionary. If key exists in
the Dictionary prior to this call being made, the old value is replaced.
- Overrides:
put in class WeakHashtable
- Parameters:
key - the key to addvalue - the value to add
- Returns:
- the old value previously associated with
key or null if key is new
to the Dictionary. - See Also:
Dictionary.elements(),
Dictionary.get(java.lang.Object),
Dictionary.keys()
remove
public java.lang.Object remove(java.lang.Object key)
- Description copied from class:
Dictionary
- Remove the key/value pair with the specified
key from this Dictionary.
- Overrides:
remove in class WeakHashtable
- Parameters:
key - the key to remove
- Returns:
- the associated value or else
null if key is not known to this
Dictionary - See Also:
Dictionary.get(java.lang.Object),
Dictionary.put(java.lang.Object, java.lang.Object)
removeStrict
public java.lang.Object removeStrict(java.lang.Object key,
java.lang.Object value)
- Overrides:
removeStrict in class WeakHashtable
clear
public void clear()
- Overrides:
clear in class WeakHashtable
Copyright © 2011, Oracle and/or its affiliates. All rights reserved.