public class StringManager extends Object
The StringManager operates on a package basis. One StringManager per package can be created and accessed via the getManager method call.
The StringManager will look for a ResourceBundle named by the package name given plus the suffix of "LocalStrings". In practice, this means that the localized information will be contained in a LocalStrings.properties file located in the package directory of the classpath.
Please see the documentation for java.util.ResourceBundle for more information.
ResourceBundle| Modifier and Type | Method and Description |
|---|---|
static StringManager |
getManager(ResourceBundle bundle)
Get the StringManager for a particular package.
|
static StringManager |
getManager(String packageName)
Get the StringManager for a particular package.
|
static StringManager |
getManager(String packageName,
Locale loc)
Get the StringManager for a particular package and Locale.
|
String |
getString(String key)
Get a string from the underlying resource bundle or return
null if the String is not found.
|
String |
getString(String key,
Object arg)
Get a string from the underlying resource bundle and format it
with the given object argument.
|
String |
getString(String key,
Object[] args)
Get a string from the underlying resource bundle and format
it with the given set of arguments.
|
String |
getString(String key,
Object arg1,
Object arg2)
Get a string from the underlying resource bundle and format it
with the given object arguments.
|
String |
getString(String key,
Object arg1,
Object arg2,
Object arg3)
Get a string from the underlying resource bundle and format it
with the given object arguments.
|
String |
getString(String key,
Object arg1,
Object arg2,
Object arg3,
Object arg4)
Get a string from the underlying resource bundle and format it
with the given object arguments.
|
public String getString(String key)
key - to desired resource StringIllegalArgumentException - if key is null.public String getString(String key, Object[] args)
key - args - public String getString(String key, Object arg)
key - arg - public String getString(String key, Object arg1, Object arg2)
key - arg1 - arg2 - public String getString(String key, Object arg1, Object arg2, Object arg3)
key - arg1 - arg2 - arg3 - public String getString(String key, Object arg1, Object arg2, Object arg3, Object arg4)
key - arg1 - arg2 - arg3 - arg4 - public static StringManager getManager(String packageName)
packageName - public static StringManager getManager(ResourceBundle bundle)
packageName - public static StringManager getManager(String packageName, Locale loc)
packageName - Copyright © 2005–2017 Oracle Corporation. All rights reserved.