Method getObject(String key)
Return type: java.lang.Object
Member of: java.util.ResourceBundle
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 Object value = resourceBundle.getObject(key);
2 char[] zeroChar = (char[]) thisBundle.getObject("zero");
3 Object value = inBundle.getObject(key);
4 bundle.getObject(key);
5 resource.getObject(key);
6 UMLChecklist checklist = new UMLChecklist((String[][]) bundle.getObject(key));
7 value = (String) sBundle.getObject(key);
8 final Object object = bundle.getObject( key );
9 String transValue = (String) localeProperties.getObject(propertiesKey);
10 curObject = ((ResourceBundle) curObject).getObject(key.toString());
11 (char[]) thisBundle.getObject(org.apache.xml.utils.res.XResourceBundle.LANG_ALPHABET)));
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.