| public abstract class java.util Dictionary<K, V>
|
Java SE 6 |
Dictionary class is the abstract parent of any
class, such as Hashtable, which maps keys to values.
Every key and every value is an object. In any one Dictionary
object, every key is associated with at most one value. Given a
Dictionary and a key, the associated element can be looked up.
Any non-null object can be used as a key and as a value.
As a rule, the equals method should be used by
implementations of this class to decide if two keys are the same.
NOTE: This class is obsolete. New implementations should implement the Map interface, rather than extending this class.
| version | 1.24, 11/17/05 |
| since | JDK1.0 |
| See also | java.util.Map, equals(java.lang.Object), hashCode(), java.util.Hashtable |
| Constructors | |
|---|---|
| public | Dictionary() Sole constructor. (For invocation by subclass constructors, typically implicit.) |
| Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| abstract public Enumeration | elements() Returns an enumeration of the values in this dictionary. The general contract for the elements method is that an Enumeration is returned that will generate all the elements contained in entries in this dictionary.
| ||||||||||
| abstract public Object | get(Object key) Returns the value to which the key is mapped in this dictionary. The general contract for the isEmpty method is that if this dictionary contains an entry for the specified key, the associated value is returned; otherwise, null is returned.
| ||||||||||
| abstract public Enumeration | keys() Returns an enumeration of the keys in this dictionary. The general contract for the keys method is that an Enumeration object is returned that will generate all the keys for which this dictionary contains entries.
| ||||||||||
| abstract public Object | put(Object key, Object value) Maps the specified key to the specified
value in this dictionary. Neither the key nor the
value can be null.
If this dictionary already contains an entry for the specified key, the value already in this dictionary for that key is returned, after modifying the entry to contain the new element. If this dictionary does not already have an entry for the specified key, an entry is created for the specified key and value, and null is returned.
The
| ||||||||||
| abstract public Object | remove(Object key) Removes the key (and its corresponding
value) from this dictionary. This method does nothing
if the key is not in this dictionary.
| ||||||||||
| abstract public int | size() Returns the number of entries (distinct keys) in this dictionary.
| ||||||||||
| About DocWeb · Bundles · Export · Export All | Top 10 · Statistics · Login |
| About Sun · Contact · Privacy · Terms of Use · Trademarks | Java SE 6 · Copyright © 1994-2009 Sun Microsystems, Inc.All rights reserved. Use is subject to license terms |
![]() |
![]() |
|