public abstract class AbstractResourceBundleProvider extends Object implements ResourceBundleProvider
AbstractResourceBundleProvider is an abstract class for helping
implement the ResourceBundleProvider interface.| Modifier | Constructor and Description |
|---|---|
protected |
AbstractResourceBundleProvider()
Constructs an
AbstractResourceBundleProvider with the
"java.properties" format. |
protected |
AbstractResourceBundleProvider(String... formats)
Constructs an
AbstractResourceBundleProvider with the specified
formats. |
| Modifier and Type | Method and Description |
|---|---|
ResourceBundle |
getBundle(String baseName,
Locale locale)
Returns a
ResourceBundle for the given baseName and
locale. |
protected String |
toBundleName(String baseName,
Locale locale)
Returns the bundle name for the given
baseName and
locale. |
protected AbstractResourceBundleProvider()
AbstractResourceBundleProvider with the
"java.properties" format. This constructor is equivalent to
AbstractResourceBundleProvider("java.properties").protected AbstractResourceBundleProvider(String... formats)
AbstractResourceBundleProvider with the specified
formats. The getBundle(String, Locale) method looks up
resource bundles for the given formats. formats must
be "java.class" or "java.properties".formats - the formats to be used for loading resource bundlesNullPointerException - if the given formats is nullIllegalArgumentException - if the given formats is not
"java.class" or "java.properties".protected String toBundleName(String baseName, Locale locale)
baseName and
locale. This method is called from the default implementation of the
getBundle(String, Locale) method.ResourceBundle.Control.toBundleName(String, Locale).baseName - the base name of the resource bundle, a fully qualified
class namelocale - the locale for which a resource bundle should be loadedpublic ResourceBundle getBundle(String baseName, Locale locale)
ResourceBundle for the given baseName and
locale. This method calls the
toBundleName method to get the
bundle name for the baseName and locale. The formats
specified by the constructor will be searched to find the resource
bundle.getBundle in interface ResourceBundleProviderbaseName - the base bundle name of the resource bundle, a fully
qualified class name.locale - the locale for which the resource bundle should be instantiatedResourceBundle of the given baseName and locale,
or null if no resource bundle is foundNullPointerException - if baseName or locale is nullUncheckedIOException - if any IO exception occurred during resource
bundle loading Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2016, Oracle and/or its affiliates. All rights reserved.
DRAFT 9-internal+0-2016-04-14-195246.buildd.src