Record Class MessageRegistry.MessageRegistryEntry
java.lang.Object
java.lang.Record
org.tquadrat.foundation.config.internal.MessageRegistry.MessageRegistryEntry
- Record Components:
message
- The default message.key
- The key for the alternative/localised message.
- Enclosing class:
MessageRegistry
An entry for the registry.
- 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.MessageRegistryEntry"
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionMessageRegistryEntry
(String message, int key) Creates an instance of aMessageRegistryEntry
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.int
key()
Returns the value of thekey
record component.message()
Returns the value of themessage
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
Constructor Details
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
message
Returns the value of themessage
record component.- Returns:
- the value of the
message
record component
-
key
Returns the value of thekey
record component.- Returns:
- the value of the
key
record component
-