Example usage for Java java.util ResourceBundle fields, constructors, methods, implement or subclass
The text is from its open source code.
Set | keySet A Set of the keys contained only in this ResourceBundle. |
ResourceBundle() Sole constructor. |
void | clearCache() Removes all resource bundles from the cache that have been loaded by the caller's module. |
void | clearCache(ClassLoader loader) Removes all resource bundles from the cache that have been loaded by the given class loader. |
boolean | containsKey(String key) Determines whether the given key is contained in this ResourceBundle or its parent bundles. |
ResourceBundle | getBundle(String baseName) Gets a resource bundle using the specified base name, the default locale, and the caller module. |
ResourceBundle | getBundle(String baseName, Control control) Returns a resource bundle using the specified base name, the default locale and the specified control. |
ResourceBundle | getBundle(String baseName, Locale locale) Gets a resource bundle using the specified base name and locale, and the caller module. |
ResourceBundle | getBundle(String baseName, Module module) Gets a resource bundle using the specified base name and the default locale on behalf of the specified module. |
ResourceBundle | getBundle(String baseName, Locale targetLocale, Module module) Gets a resource bundle using the specified base name and locale on behalf of the specified module. |
ResourceBundle | getBundle(String baseName, Locale targetLocale, Control control) Returns a resource bundle using the specified base name, target locale and control, and the caller's class loader. |
ResourceBundle | getBundle(String baseName, Locale locale, ClassLoader loader) Gets a resource bundle using the specified base name, locale, and class loader. |
ResourceBundle | getBundle(String baseName, Locale targetLocale, ClassLoader loader, Control control) Returns a resource bundle using the specified base name, target locale, class loader and control. |
Enumeration | getKeys() Returns an enumeration of the keys. |
Locale | getLocale() Returns the locale of this resource bundle. |
Object | getObject(String key) Gets an object for the given key from this resource bundle or one of its parents. |
String | getString(String key) Gets a string for the given key from this resource bundle or one of its parents. |
String | toString() Returns a string representation of the object. |