Class MessageRegistry
java.lang.Object
org.tquadrat.foundation.config.internal.MessageRegistry
@UtilityClass
@ClassVersion(sourceVersion="$Id: MessageRegistry.java 1042 2022-12-26 14:05:06Z tquadrat $")
@API(status=INTERNAL,
since="0.1.0")
public final class MessageRegistry
extends Object
This class is meant as a place to hold the specific error messages for the
failed conversion of command line entries.
- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: MessageRegistry.java 1042 2022-12-26 14:05:06Z tquadrat $
- Since:
- 0.1.0
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.config.internal.MessageRegistry"
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final record
An entry for the registry. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Map
<Class<? extends StringConverter>, MessageRegistry.MessageRegistryEntry> The message registry.static final MessageRegistry.MessageRegistryEntry
The fall-back entry.static final int
The message key for the error message about an illegalCharset
name on the command line.static final int
The message key for the error message about an invalid IP address or an unknown host name on the command line.static final int
The message key for the error message about an invalid character on the command line.static final int
The message key for the error message about an invalid duration String on the command line.static final int
The message key for the error message about an invalid regular expression on the command line.static final int
The message key for the error message about an invalid number format on the command line.static final int
The message key for the error message about an invalid period on the command line.static final int
The message key for the error message about an invalid URI on the command line.static final int
The message key for the error message about an invalid URL on the command line.static final int
The message key for the error message about an invalid UUID on the command line.static final int
The message key for the error message about an invalid zone id on the command line.static final int
The message key for the error message about an unknown class name on the command line.static final int
The message key for the error message about an unknown timezone name on the command line. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
MSGKEY_IllegalCharsetName
The message key for the error message about an illegalCharset
name on the command line.- See Also:
-
MSGKEY_InvalidAddress
The message key for the error message about an invalid IP address or an unknown host name on the command line.- See Also:
-
MSGKEY_InvalidCharacter
The message key for the error message about an invalid character on the command line.- See Also:
-
MSGKEY_InvalidDuration
The message key for the error message about an invalid duration String on the command line.- See Also:
-
MSGKEY_InvalidExpression
The message key for the error message about an invalid regular expression on the command line.- See Also:
-
MSGKEY_InvalidNumberFormat
The message key for the error message about an invalid number format on the command line.- See Also:
-
MSGKEY_InvalidPeriod
The message key for the error message about an invalid period on the command line.- See Also:
-
MSGKEY_InvalidURI
The message key for the error message about an invalid URI on the command line.- See Also:
-
MSGKEY_InvalidURL
The message key for the error message about an invalid URL on the command line.- See Also:
-
MSGKEY_InvalidUUIDFormat
The message key for the error message about an invalid UUID on the command line.- See Also:
-
MSGKEY_InvalidZoneId
The message key for the error message about an invalid zone id on the command line.- See Also:
-
MSGKEY_UnknownClass
The message key for the error message about an unknown class name on the command line.- See Also:
-
MSGKEY_UnknownTimeZone
The message key for the error message about an unknown timezone name on the command line.- See Also:
-
MSG_REGISTRY_FALLBACK
@API(status=INTERNAL, since="0.1.0") public static final MessageRegistry.MessageRegistryEntry MSG_REGISTRY_FALLBACKThe fall-back entry. -
m_MessageRegistry
@API(status=INTERNAL, since="0.1.0") public static final Map<Class<? extends StringConverter>,MessageRegistry.MessageRegistryEntry> m_MessageRegistryThe message registry.
-
-
Constructor Details
-
MessageRegistry
private MessageRegistry()No instance allowed for this class.
-