java.lang.Object | ||
↳ | java.util.ResourceBundle | |
↳ | java.util.ListResourceBundle |
ListResourceBundle
is the abstract superclass of classes which provide
resources by implementing the getContents()
method to return
the list of resources.
[Expand]
Inherited Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.util.ResourceBundle
|
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Constructs a new instance of this class.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns the names of the resources contained in this
ListResourceBundle . | |||||||||||
Returns the named resource from this
ResourceBundle , or null if the
resource is not found. |
Protected Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns an
Object array which contains the resources of this
ListResourceBundle . |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class java.util.ResourceBundle
| |||||||||||
From class java.lang.Object
|
Constructs a new instance of this class.
Returns the names of the resources contained in this ListResourceBundle
.
Enumeration
of the resource names.Returns the named resource from this ResourceBundle
, or null if the
resource is not found.
key | the name of the resource. |
---|
Returns an Object
array which contains the resources of this
ListResourceBundle
. Each element in the array is an array of two
elements, the first is the resource key string and the second is the
resource.
Object
array containing the resources.