Java java.util Dictionary fields, constructors, methods, implement or subclass

Example usage for Java java.util Dictionary fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.util Dictionary.

The text is from its open source code.

Subclass

java.util.Dictionary has subclasses.
Click this link to see all its subclasses.

Implementation

java.util.Dictionary has the following implementations.
Click this link to see all its implementation.

Method

Enumerationelements()
Returns an enumeration of the values in this dictionary.
booleanequals(Object obj)
Indicates whether some other object is "equal to" this one.
Vget(Object key)
Returns the value to which the key is mapped in this dictionary.
booleanisEmpty()
Tests if this dictionary maps no keys to value.
Enumerationkeys()
Returns an enumeration of the keys in this dictionary.
Vput(K key, V value)
Maps the specified key to the specified value in this dictionary.
Vremove(Object key)
Removes the key (and its corresponding value ) from this dictionary.
intsize()
Returns the number of entries (distinct keys) in this dictionary.
StringtoString()
Returns a string representation of the object.