Package net.minecraft.client.report
Record Class ChatAbuseReport.ValidationError
java.lang.Object
java.lang.Record
net.minecraft.client.report.ChatAbuseReport.ValidationError
- Record Components:
message
-
- Enclosing class:
ChatAbuseReport
@Environment(CLIENT)
public static record ChatAbuseReport.ValidationError(Text message)
extends Record
- Mappings:
Namespace Name official feb$a
intermediary net/minecraft/class_7566$class_7567
named net/minecraft/client/report/ChatAbuseReport$ValidationError
official e
intermediary comp_877
named message
-
Field Summary
Modifier and TypeFieldDescriptionstatic final ChatAbuseReport.ValidationError
private final Text
The field for themessage
record component.static final ChatAbuseReport.ValidationError
static final ChatAbuseReport.ValidationError
static final ChatAbuseReport.ValidationError
-
Constructor Summary
-
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.message()
Returns the value of themessage
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
message
The field for themessage
record component. -
NO_REASON
- Mappings:
Namespace Name Mixin selector official a
Lfeb$a;a:Lfeb$a;
intermediary field_39655
Lnet/minecraft/class_7566$class_7567;field_39655:Lnet/minecraft/class_7566$class_7567;
named NO_REASON
Lnet/minecraft/client/report/ChatAbuseReport$ValidationError;NO_REASON:Lnet/minecraft/client/report/ChatAbuseReport$ValidationError;
-
NO_REPORTED_MESSAGES
- Mappings:
Namespace Name Mixin selector official b
Lfeb$a;b:Lfeb$a;
intermediary field_39656
Lnet/minecraft/class_7566$class_7567;field_39656:Lnet/minecraft/class_7566$class_7567;
named NO_REPORTED_MESSAGES
Lnet/minecraft/client/report/ChatAbuseReport$ValidationError;NO_REPORTED_MESSAGES:Lnet/minecraft/client/report/ChatAbuseReport$ValidationError;
-
TOO_MANY_MESSAGES
- Mappings:
Namespace Name Mixin selector official c
Lfeb$a;c:Lfeb$a;
intermediary field_39657
Lnet/minecraft/class_7566$class_7567;field_39657:Lnet/minecraft/class_7566$class_7567;
named TOO_MANY_MESSAGES
Lnet/minecraft/client/report/ChatAbuseReport$ValidationError;TOO_MANY_MESSAGES:Lnet/minecraft/client/report/ChatAbuseReport$ValidationError;
-
COMMENTS_TOO_LONG
- Mappings:
Namespace Name Mixin selector official d
Lfeb$a;d:Lfeb$a;
intermediary field_39658
Lnet/minecraft/class_7566$class_7567;field_39658:Lnet/minecraft/class_7566$class_7567;
named COMMENTS_TOO_LONG
Lnet/minecraft/client/report/ChatAbuseReport$ValidationError;COMMENTS_TOO_LONG:Lnet/minecraft/client/report/ChatAbuseReport$ValidationError;
-
-
Constructor Details
-
ValidationError
-
-
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)
. -
message
Returns the value of themessage
record component.- Returns:
- the value of the
message
record component
-