Record Class ChatLogSegmenter.Results<T extends LoggedChatMessage>
java.lang.Object
java.lang.Record
net.minecraft.client.gui.screens.reporting.ChatLogSegmenter.Results<T>
- Enclosing class:
- ChatLogSegmenter<T extends LoggedChatMessage>
public static record ChatLogSegmenter.Results<T extends LoggedChatMessage>(List<ChatLog.Entry<T extends LoggedChatMessage>> messages, ChatLogSegmenter.MessageType type)
extends Record
-
Field Summary
Modifier and TypeFieldDescriptionprivate final List<ChatLog.Entry<T>>
The field for themessages
record component.private final ChatLogSegmenter.MessageType
The field for thetype
record component. -
Constructor Summary
ConstructorDescriptionResults
(List<ChatLog.Entry<T>> messages, ChatLogSegmenter.MessageType type) Creates an instance of aResults
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.messages()
Returns the value of themessages
record component.final String
toString()
Returns a string representation of this record class.type()
Returns the value of thetype
record component.
-
Field Details
-
messages
The field for themessages
record component. -
type
The field for thetype
record component.
-
-
Constructor Details
-
Results
Creates an instance of aResults
record class.- Parameters:
messages
- the value for themessages
record componenttype
- the value for thetype
record component
-
-
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
public final int 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)
. -
messages
Returns the value of themessages
record component.- Returns:
- the value of the
messages
record component
-
type
Returns the value of thetype
record component.- Returns:
- the value of the
type
record component
-