- Java.util - WeakHashMap
- Java.util - Vector
- Java.util - UUID
- Java.util - TreeSet
- Java.util - TreeMap
- Java.util - TimeZone
- Java.util - TimerTask
- Java.util - Timer
- Java.util - StringTokenizer
- Java.util - Stack
- Java.util - SimpleTimeZone
- Java.util - ServiceLoader
- Java.util - Scanner
- Java.util - ResourceBundle.Control
- Java.util - ResourceBundle
- Java.util - Random
- Java.util - PropertyResourceBundle
- Java.util - PropertyPermission
- Java.util - Properties
- Java.util - PriorityQueue
- Java.util - Observable
- Java.util - Locale
- Java.util - ListResourceBundle
- Java.util - LinkedList
- Java.util - LinkedHashSet
- Java.util - LinkedHashMap
- Java.util - IdentityHashMap
- Java.util - Hashtable
- Java.util - HashSet
- Java.util - HashMap
- Java.util - GregorianCalendar
- Java.util - Formatter
- Java.util - EnumSet
- Java.util - EnumMap
- Java.util - Dictionary
- Java.util - Date
- Java.util - Currency
- Java.util - Collections
- Java.util - Calendar
- Java.util - BitSet
- Java.util - Arrays
- Java.util - ArrayList
- Java.util - ArrayDeque
- Java.util - Home
Java.util Package Extras
- Java.util - Discussion
- Java.util - Useful Resources
- Java.util - Enumerations
- Java.util - Exceptions
- Java.util - Interfaces
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Java.util.Dictionary Class
Introduction
The java.util.Dictionary class is the abstract parent of any class, such as Hashtable, which maps keys to values.Following are the important points about Dictionary −
In this class every key and every value is an object.
In his class object every key is associated with at most one value.
Class declaration
Following is the declaration for java.util.Dictionary class −
pubpc abstract class Dictionary<K,V> extends Object
Class constructors
Sr.No. | Constructor & Description |
---|---|
1 | Dictionary() This is the single constructor. |
Class methods
Sr.No. | Method & Description |
---|---|
1 | This method returns an enumeration of the values in this dictionary. |
2 | This method returns the value to which the key is mapped in this dictionary. |
3 | This method tests if this dictionary maps no keys to value. |
4 | This method returns an enumeration of the keys in this dictionary. |
5 | This method maps the specified key to the specified value in this dictionary. |
6 | This method removes the key (and its corresponding value) from this dictionary. |
7 | This method returns the number of entries (distinct keys) in this dictionary. |
Methods inherited
This class inherits methods from the following classes −
java.util.Object