java.lang.Object
org.tquadrat.foundation.config.internal.Commons
@UtilityClass
@ClassVersion(sourceVersion="$Id: Commons.java 1061 2023-09-25 16:32:43Z tquadrat $")
@API(status=STABLE,
since="0.1.0")
@UseAdditionalTexts
public final class Commons
extends Object
The internal tools for the configuration module.
- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: Commons.java 1061 2023-09-25 16:32:43Z tquadrat $
- Since:
- 0.1.0
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.config.internal.Commons"
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
The name of the resource bundle with the messages and texts for this module: "org.tquadrat.foundation.config.MessagesAndTexts".private static final ResourceBundle
The resource bundle that is used by this module.static final String
The message prefix: "CFG". -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic final CmdLineException
createException
(Class<? extends StringConverter> stringConverterClass, Throwable cause, String value) Creates an instance ofCmdLineException
based on the given arguments.static final String
retrieveMessage
(int key, boolean addKey, Object... args) Retrieves the message with the given key from the resource bundle and applies the given arguments to it.static final String
retrieveText
(String key, Object... args) Retrieves the text with the given key from the resource bundle and applies the given arguments to it.
-
Field Details
-
BASE_BUNDLE_NAME
The name of the resource bundle with the messages and texts for this module: "org.tquadrat.foundation.config.MessagesAndTexts".- See Also:
-
MESSAGE_PREFIX
The message prefix: "CFG".- See Also:
-
m_ResourceBundle
The resource bundle that is used by this module.
-
-
Constructor Details
-
Commons
private Commons()No instance allowed for this class!
-
-
Method Details
-
createException
public static final CmdLineException createException(Class<? extends StringConverter> stringConverterClass, Throwable cause, String value) Creates an instance ofCmdLineException
based on the given arguments.- Parameters:
stringConverterClass
- The class of theStringConverter
implementation.cause
- The causingException
.value
- The problematic value.- Returns:
- The instance of
CmdLineException
.
-
retrieveMessage
Retrieves the message with the given key from the resource bundle and applies the given arguments to it.
If the resource bundle does not contain a message for the given key, the key itself will be returned, appended with the arguments.
- Parameters:
key
- The key for the message.addKey
- The recommended value istrue
; this means that the message will be prefixed with the generated message key.args
- The arguments for the message.- Returns:
- The text.
- See Also:
-
retrieveText
Retrieves the text with the given key from the resource bundle and applies the given arguments to it.
If the resource bundle does not contain a text for the given key, the key itself will be returned, appended with the arguments.
- Parameters:
key
- The key for the text.args
- The arguments for the text.- Returns:
- The text.
- See Also:
-