public interface ResourceBundleControlProvider
ResourceBundle.Control
. The default resource bundle loading behavior of the ResourceBundle.getBundle
factory methods that take no ResourceBundle.Control
instance can be modified with
ResourceBundleControlProvider
implementations. Provider implementations are loaded from the application's class path using ServiceLoader
at the first invocation of the ResourceBundle.getBundle
factory method that takes no ResourceBundle.Control
instance.
All ResourceBundleControlProvider
s are ignored in named modules.
Modifier and Type | Method | Description |
---|---|---|
ResourceBundle.Control |
getControl |
Returns a ResourceBundle.Control instance that is used to handle resource bundle loading for the given
baseName . |
ResourceBundle.Control getControl(String baseName)
ResourceBundle.Control
instance that is used to handle resource bundle loading for the given
baseName
. This method must return null
if the given baseName
isn't handled by this provider.baseName
- the base name of the resource bundleResourceBundle.Control
instance, or null
if the given baseName
is not applicable to this provider.NullPointerException
- if baseName
is null
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/util/spi/ResourceBundleControlProvider.html