This method performs multilevel fallback for fetching items from the bundle
e.g:
If resource is in the form
de__PHONEBOOK{
collations{
default{ "phonebook"}
}
}
If the value of "default" key needs to be accessed, then do:
ResourceBundle bundle = new ResourceBundle(getLocaleFromString("de__PHONEBOOK"));
Object result = null;
if(bundle instanceof ICUListResourceBundle){
result = ((ICUListResourceBundle) bundle).getObjectWithFallback("collations/default");
}
Parameters: path - The path to the required resource key Object represented by the key exception: MissingResourceException -