Record Class AbuseReport.ReportWithId
java.lang.Object
java.lang.Record
net.minecraft.client.session.report.AbuseReport.ReportWithId
- Record Components:
- id-
- reportType-
- report-
- Enclosing class:
- AbuseReport
@Environment(CLIENT)
public static record AbuseReport.ReportWithId(UUID id, AbuseReportType reportType, com.mojang.authlib.minecraft.report.AbuseReport report)
extends Record
- Mappings:
- Namespace - Name - named - net/minecraft/client/session/report/AbuseReport$ReportWithId- intermediary - net/minecraft/class_7855$class_7568- official - ghf$c- named - id- intermediary - comp_878- official - a- named - reportType- intermediary - comp_1910- official - b- named - report- intermediary - comp_879- official - c
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final UUIDThe field for theidrecord component.private final com.mojang.authlib.minecraft.report.AbuseReportThe field for thereportrecord component.private final AbuseReportTypeThe field for thereportTyperecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionReportWithId(UUID uUID, AbuseReportType abuseReportType, com.mojang.authlib.minecraft.report.AbuseReport abuseReport) 
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.id()Returns the value of theidrecord component.com.mojang.authlib.minecraft.report.AbuseReportreport()Returns the value of thereportrecord component.Returns the value of thereportTyperecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
idThe field for theidrecord component.
- 
reportTypeThe field for thereportTyperecord component.
- 
reportprivate final com.mojang.authlib.minecraft.report.AbuseReport reportThe field for thereportrecord component.
 
- 
- 
Constructor Details- 
ReportWithIdpublic ReportWithId(UUID uUID, AbuseReportType abuseReportType, com.mojang.authlib.minecraft.report.AbuseReport abuseReport) 
 
- 
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
idReturns the value of theidrecord component.- Returns:
- the value of the idrecord component
 
- 
reportTypeReturns the value of thereportTyperecord component.- Returns:
- the value of the reportTyperecord component
 
- 
reportpublic com.mojang.authlib.minecraft.report.AbuseReport report()Returns the value of thereportrecord component.- Returns:
- the value of the reportrecord component
 
 
-