Package org.tquadrat.foundation.inifile
Record Class INIFile.Entry
java.lang.Object
java.lang.Record
org.tquadrat.foundation.inifile.INIFile.Entry
- Record Components:
group
- The group for the entry.key
- The key for the entry.value
- The entry's value.
- All Implemented Interfaces:
Comparable<INIFile.Entry>
- Enclosing interface:
INIFile
public static record INIFile.Entry(String group, String key, String value)
extends Record
implements Comparable<INIFile.Entry>
An entry for the INI file.
- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: INIFile.java 1128 2024-04-06 07:17:56Z tquadrat $
- Since:
- 0.1.0
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.inifile.INIFile.Entry"
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionint
final boolean
Indicates whether some other object is "equal to" this one.group()
Returns the value of thegroup
record component.final int
hashCode()
Returns a hash code value for this object.key()
Returns the value of thekey
record component.final String
toString()
value()
Returns the value of thevalue
record component.final <T> T
value
(StringConverter<? extends T> stringConverter) Retrieves the value and translates it to the desired type.
-
Field Details
-
Constructor Details
-
Method Details
-
compareTo
- Specified by:
compareTo
in interfaceComparable<INIFile.Entry>
- Since:
- 0.4.2
-
toString
-
value
Retrieves the value and translates it to the desired type.- Type Parameters:
T
- The target type.- Parameters:
stringConverter
- The implementation ofStringConverter
that is used to convert the stored value into the target type.- Returns:
- The value; can be
null
.
-
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
group
Returns the value of thegroup
record component.- Returns:
- the value of the
group
record component
-
key
Returns the value of thekey
record component.- Returns:
- the value of the
key
record component
-
value
Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-