Example usage for Java java.util PropertyResourceBundle fields, constructors, methods, implement or subclass
The text is from its open source code.
PropertyResourceBundle(InputStream stream) Creates a property resource bundle from an java.io.InputStream InputStream . | |
PropertyResourceBundle(Reader reader) Creates a property resource bundle from a java.io.Reader Reader . |
boolean | containsKey(String key) Determines whether the given key is contained in this ResourceBundle or its parent bundles. |
Enumeration | getKeys() Returns an Enumeration of the keys contained in this ResourceBundle and its parent bundles. |
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. |
Set | handleKeySet() Returns a Set of the keys contained only in this ResourceBundle . |
Set | keySet() Returns a Set of all keys contained in this ResourceBundle and its parent bundles. |