public interface Messages
Modifier and Type | Method and Description |
---|---|
Optional<String> |
get(String key,
Context context,
Optional<Result> result,
Object... parameter)
Get a translated string.
|
Optional<String> |
get(String key,
Optional<String> language,
Object... parameter)
Get a translated string.
|
Map<Object,Object> |
getAll(Context context,
Optional<Result> result)
Returns all messages for the default language in that context / result.
|
Map<Object,Object> |
getAll(Optional<String> language)
Deprecated.
Might be removed from further releases. Usually is not implemented in a thread
safe way and is error prone.
Returns all messages for a language we have. Please note that this method
does NOT format any MessageFormat values. You have to do that yourself in
the controller logic most likely.
Note: If you don't want to determine the language yourself please use
Messages#getAll(Context, Result) |
String |
getWithDefault(String key,
String defaultMessage,
Context context,
Optional<Result> result,
Object... params)
Gets a message for a message key.
|
String |
getWithDefault(String key,
String defaultMessage,
Optional<String> language,
Object... params)
Gets a message for a message key.
|
Optional<String> get(String key, Optional<String> language, Object... parameter)
Messages#get(String, Context, Result, Object...)
key
- The key used in your message file (conf/messages.properties)language
- The language to get. Can be null - then the default language
is returned. It also looks for a fallback. Eg. A request for
"en-US" will fallback to "en" if there is no matching language
file.parameter
- Parameters to use in formatting the message of the key (in
MessageFormat
).Optional<String> get(String key, Context context, Optional<Result> result, Object... parameter)
key
- The key used in your message file (conf/messages.properties)context
- The context used to determine the language.result
- The result used to determine the language.parameter
- Parameters to use in formatting the message of the key (in
MessageFormat
).String getWithDefault(String key, String defaultMessage, Optional<String> language, Object... params)
Messages#getWithDefault(String, Context, Result, Object...)
key
- The key used in your message file (conf/messages.properties)defaultMessage
- A default message that will be used when no matching message
can be retrieved.language
- The language to get. May be absent - then the default language
is returned. It also looks for a fallback. Eg. A request for
"en-US" will fallback to "en" if there is no matching language
file.parameter
- Parameters to use in formatting the message of the key (in
MessageFormat
).String getWithDefault(String key, String defaultMessage, Context context, Optional<Result> result, Object... params)
key
- The key used in your message file (conf/messages.properties)defaultMessage
- A default message that will be used when no matching message
can be retrieved.context
- The context used to determine the language.result
- The result used to determine the language. May be absentparams
- Parameters to use in formatting the message of the key (in
MessageFormat
).@Deprecated Map<Object,Object> getAll(Optional<String> language)
Messages#getAll(Context, Result)
language
- The language to get. May be absent - then the default language
is returned. It also looks for a fallback. Eg. A request for
"en-US" will fallback to "en" if there is no matching language
file.
language can also be the complete Accept-Language header: en-US,en;q=0.8,de;q=0.6Map<Object,Object> getAll(Context context, Optional<Result> result)
context
- The contextresult
- The result - bay be absentCopyright © 2019 ninjaframework. All rights reserved.