| Interface | Description |
|---|---|
| MsgContext<E> |
Context and Holder for arguments so its easier to keep compatibility between named map based palceholders like icu4j
and ordinal array based placeholder like like spring and java.text.messageFormat
|
| MsgKey |
MsgKey contains the lookup code for the message and the argument map for name substitutions.
|
| MsgKeyDecorator |
add to a class that has a MsgKey reference as field msg
|
| MsgMultiKey |
MsgKey that has multiple codes to lookup.
|
| MsgService |
Similiar to org.springframework.context.MessageSource but no dependencies
so can be used outside spring, micronaut and grails without needing to depend on any framework
|
| Class | Description |
|---|---|
| DefaultMsgContext |
Context and Holder for arguments so its easier to keep compatibility between named map based palceholders like icu4j
and ordinal array based placeholder like like spring and java.text.messageFormat
|
| DefaultMsgKey |
Default implementation of the MsgKey, normally should be build with
MsgKey.of('somekey',....), not directly with this class
|
| DefaultMsgMultiKey |
Default implementation of the MsgKey, normally should be build with
MsgKey.of('somekey',....), not directly with this class
|
| MsgArgs |
An arg wrapper that allows the args to be an array, List or Map
|