public class Resources extends Object
Provides locale-neutral access to string resources. Only the documentation and code are in English. :-)
The major goal, aside from globalization, is convenience. Access to resources with no parameters is made in the form:
Resources.getMessage(MESSAGE_NAME);
Access to resources with one parameter works like
Resources.getMessage(MESSAGE_NAME, arg1);
... and so on.
| Constructor and Description |
|---|
Resources() |
| Modifier and Type | Method and Description |
|---|---|
static String |
getMessage(String name)
Retrieves a message with no arguments.
|
static String |
getMessage(String name,
Object... a)
Retrieves a message with arbitrarily many arguments.
|
public static String getMessage(String name) throws MissingResourceException
name - the name of the messageMissingResourceException - if the message does not existpublic static String getMessage(String name, Object... a) throws MissingResourceException
name - the name of the messagea - arguments to be substituted into the message textMissingResourceException - if the message does not existCopyright © 2001-2014 The Apache Software Foundation. All Rights Reserved.