Interface ResourceBundleControlProvider


public interface ResourceBundleControlProvider

An interface for service providers that provide implementations of 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 must be packaged using the Java Extension Mechanism as installed extensions. Refer to ServiceLoader for the extension packaging. Any installed ResourceBundleControlProvider implementations are loaded using ServiceLoader at the ResourceBundle class loading time.

Since:
1.8
See Also:
ResourceBundle.getBundle, ServiceLoader.loadInstalled(Class)

Methods

Modifier and Type Method and Description
ResourceBundle.Control getControl(String baseName)

Returns a ResourceBundle.Control instance that is used to handle resource bundle loading for the given baseName.

Methods

getControl

ResourceBundle.Control getControl(String baseName)

Returns a 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.

Parameters:
baseName - the base name of the resource bundle
Returns:
a ResourceBundle.Control instance, or null if the given baseName is not applicable to this provider.
Throws:
NullPointerException - if baseName is null

© 1993, 2020, 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/javase/8/docs/api/java/util/spi/ResourceBundleControlProvider.html