public interface StringTranslator
| Modifier and Type | Method and Description |
|---|---|
String |
getString(String key)
Get a localized string using the specified resource key.
|
String |
getString(String key,
Object insert1)
Get a localized string using the specified resource key.
|
String |
getString(String key,
Object[] inserts)
Get a localized string using the specified resource key.
|
String |
getString(String key,
Object insert1,
Object insert2)
Get a localized string using the specified resource key.
|
String |
getString(String key,
Object insert1,
Object insert2,
Object insert3)
Get a localized string using the specified resource key.
|
String |
getString(String key,
Object insert1,
Object insert2,
Object insert3,
Object insert4)
Get a localized string using the specified resource key.
|
String getString(String key)
key - the key to the localized string in the resource bundle.String getString(String key, Object insert1)
key - the key to the localized string in the resource bundle.insert1 - the message insert.String getString(String key, Object insert1, Object insert2)
key - the key to the localized string in the resource bundle.insert1 - the first message insert.insert2 - the second message insert.String getString(String key, Object insert1, Object insert2, Object insert3)
key - the key to the localized string in the resource bundle.insert1 - the first message insert.insert2 - the second message insert.insert3 - the third message insert.String getString(String key, Object insert1, Object insert2, Object insert3, Object insert4)
key - the key to the localized string in the resource bundle.insert1 - the first message insert.insert2 - the second message insert.insert3 - the third message insert.insert4 - the fourth message insert.String getString(String key, Object[] inserts)
key - the key to the localized string in the resource bundle.inserts - the array of message inserts.Copyright © 2011-2016 OpenESB Community. All Rights Reserved.