Uses of Interface
io.github.mmm.nls.argument.NlsArguments
-
Packages that use NlsArguments Package Description io.github.mmm.nls Provides the main API for the native language support (NLS).io.github.mmm.nls.argument Contains the API for the dynamic arguments of aNlsMessage
.io.github.mmm.nls.formatter Contains formatters to format NLS messages.io.github.mmm.nls.template -
-
Uses of NlsArguments in io.github.mmm.nls
Methods in io.github.mmm.nls that return NlsArguments Modifier and Type Method Description NlsArguments
NlsMessage. getArguments()
Methods in io.github.mmm.nls with parameters of type NlsArguments Modifier and Type Method Description protected NlsMessage
NlsBundle. create(String key, String message, NlsArguments arguments)
NlsMessage
NlsMessageFactory. create(String bundleName, String messageKey, String internationalizedMessage, NlsArguments arguments)
-
Uses of NlsArguments in io.github.mmm.nls.argument
Methods in io.github.mmm.nls.argument that return NlsArguments Modifier and Type Method Description static NlsArguments
NlsArguments. of()
static NlsArguments
NlsArguments. of(String key, Object value)
static NlsArguments
NlsArguments. of(String key1, Object value1, String key2, Object value2)
static NlsArguments
NlsArguments. of(String key1, Object value1, String key2, Object value2, String key3, Object value3)
static NlsArguments
NlsArguments. of(Map<String,Object> map)
static NlsArguments
NlsArguments. ofArgument(Object value)
static NlsArguments
NlsArguments. ofDate(Object value)
static NlsArguments
NlsArguments. ofDefault(Object value)
static NlsArguments
NlsArguments. ofFile(Object value)
static NlsArguments
NlsArguments. ofFormat(Object value)
static NlsArguments
NlsArguments. ofKey(Object value)
static NlsArguments
NlsArguments. ofKeyValue(Object key, Object value)
static NlsArguments
NlsArguments. ofMinMax(Object min, Object max)
static NlsArguments
NlsArguments. ofName(Object value)
static NlsArguments
NlsArguments. ofObject(Object value)
static NlsArguments
NlsArguments. ofObjectKey(Object object, Object key)
static NlsArguments
NlsArguments. ofType(Object value)
static NlsArguments
NlsArguments. ofValue(Object value)
static NlsArguments
NlsArguments. ofValueMinMax(Object value, Object min, Object max)
NlsArguments
NlsArguments. with(String key, Object value)
-
Uses of NlsArguments in io.github.mmm.nls.formatter
Methods in io.github.mmm.nls.formatter with parameters of type NlsArguments Modifier and Type Method Description default String
NlsFormatter. format(V object, Locale locale, NlsArguments arguments)
This method formats the givenobject
according to the givenlocale
.void
NlsFormatter. format(V object, Locale locale, NlsArguments arguments, Appendable buffer)
This method formats the givenobject
according to the givenlocale
.void
NlsMessageFormatter. format(Void nothing, Locale locale, NlsArguments arguments, Appendable buffer)
This method formats the underlying pattern by filling in the givenarguments
and writing the result into the givenbuffer
. -
Uses of NlsArguments in io.github.mmm.nls.template
Methods in io.github.mmm.nls.template with parameters of type NlsArguments Modifier and Type Method Description boolean
NlsTemplate. translate(Locale locale, NlsArguments arguments, Appendable buffer)
This method behaves likeNlsTemplate.translate(Locale)
but additionally fills the givenarguments
into the translated message writing into the givenbuffer
.
-