Package net.minecraft.client.report
Record Class GroupedMessagesCollector.GroupedMessages<T extends ReceivedMessage>
java.lang.Object
java.lang.Record
net.minecraft.client.report.GroupedMessagesCollector.GroupedMessages<T>
- Record Components:
messages
-type
-
- Enclosing class:
GroupedMessagesCollector<T extends ReceivedMessage>
@Environment(CLIENT)
public static record GroupedMessagesCollector.GroupedMessages<T extends ReceivedMessage>(List<ChatLog.IndexedEntry<T extends ReceivedMessage>> messages, GroupedMessagesCollector.ReportType type)
extends Record
- Mappings:
Namespace Name official epa$b
intermediary net/minecraft/class_7535$class_7537
named net/minecraft/client/report/GroupedMessagesCollector$GroupedMessages
official a
intermediary comp_864
named messages
official b
intermediary comp_865
named type
-
Field Summary
Modifier and TypeFieldDescriptionprivate final List<ChatLog.IndexedEntry<T>>
The field for themessages
record component.private final GroupedMessagesCollector.ReportType
The field for thetype
record component. -
Constructor Summary
ConstructorDescriptionGroupedMessages
(List<ChatLog.IndexedEntry<T>> list, GroupedMessagesCollector.ReportType reportType) -
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
-
Constructor Details
-
GroupedMessages
public GroupedMessages(List<ChatLog.IndexedEntry<T>> list, GroupedMessagesCollector.ReportType reportType)
-
-
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
-