java.lang.Object | ||
↳ | java.util.ResourceBundle | |
↳ | sun.util.resources.OpenListResourceBundle |
![]() |
Subclass of ResourceBundle
which mimics
ListResourceBundle
, but provides more hooks
for specialized subclass behavior. For general description,
see ListResourceBundle
.
This class leaves handleGetObject non-final, and adds a method createMap which allows subclasses to use specialized Map implementations.
[Expand]
Inherited Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Protected Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Sole constructor.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Implementation of ResourceBundle.getKeys.
| |||||||||||
Returns the parent bundle
| |||||||||||
Returns a set of keys provided in this resource bundle
| |||||||||||
Gets an object for the given key from this resource bundle.
|
Protected Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Lets subclasses provide specialized Map implementations.
| |||||||||||
See ListResourceBundle class description.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
Sole constructor. (For invocation by subclass constructors, typically implicit.)
Implementation of ResourceBundle.getKeys.
Enumeration
of the keys contained in
this ResourceBundle
and its parent bundles.
Gets an object for the given key from this resource bundle. Returns null if this resource bundle does not contain an object for the given key.
key | the key for the desired object |
---|
Lets subclasses provide specialized Map implementations. Default uses HashMap.