| java.lang.Object | ||||
| ↳ | java.util.Dictionary<K, V> | |||
| ↳ | java.util.Hashtable<K, V> | |||
| ↳ | java.util.Properties | |||
| ↳ | java.security.Provider | |||
Known Direct Subclasses
|
| Nested Classes | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Provider.Service | |||||||||||
|
[Expand]
Inherited Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.util.Properties
| |||||||||||
| Protected Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Removes all key/value pairs from this Hashtable, leaving the size zero
and the capacity unchanged.
| |||||||||||
Returns a Set of the mappings contained in this Hashtable.
| |||||||||||
Returns the generic information about the services being provided.
| |||||||||||
Returns the name of this provider.
| |||||||||||
Returns the version number for the services being provided
| |||||||||||
Returns a Set of the keys contained in this Hashtable.
| |||||||||||
Loads properties from the specified InputStream.
| |||||||||||
Associate the specified value with the specified key in this Hashtable.
| |||||||||||
Copies every mapping in the specified Map to this Hashtable.
| |||||||||||
Remove the key/value pair with the specified key from this Hashtable.
| |||||||||||
Returns a string containing a concise, human-readable description of the
receiver.
| |||||||||||
Returns a Collection of the values contained in this Hashtable.
| |||||||||||
| Protected Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class java.util.Properties
| |||||||||||
From class java.util.Hashtable
| |||||||||||
From class java.util.Dictionary
| |||||||||||
From class java.lang.Object
| |||||||||||
From interface java.util.Map
| |||||||||||
Removes all key/value pairs from this Hashtable, leaving the size zero and the capacity unchanged.
Returns a Set of the mappings contained in this Hashtable. Each element in the set is a Map.Entry. The set is backed by this Hashtable so changes to one are reflected by the other. The set does not support adding.
Returns the generic information about the services being provided.
Returns the name of this provider.
Returns the version number for the services being provided
Returns a Set of the keys contained in this Hashtable. The set is backed by this Hashtable so changes to one are reflected by the other. The set does not support adding.
Loads properties from the specified InputStream. The properties are of
the form key=value, one property per line.
| inStream | the input stream |
|---|
| IOException |
|---|
Associate the specified value with the specified key in this Hashtable. If the key already exists, the old value is replaced. The key and value cannot be null.
| key | the key to add |
|---|---|
| value | the value to add |
Copies every mapping in the specified Map to this Hashtable.
| t | the Map to copy mappings from |
|---|
Remove the key/value pair with the specified key from this Hashtable.
| key | the key to remove |
|---|
Returns a string containing a concise, human-readable description of the receiver.
Returns a Collection of the values contained in this Hashtable. The collection is backed by this Hashtable so changes to one are reflected by the other. The collection does not support adding.