Package net.minecraft.util
Record Class ErrorReporter.Impl.ErrorList
java.lang.Object
java.lang.Record
net.minecraft.util.ErrorReporter.Impl.ErrorList
- Record Components:
element
-errors
-children
-
- Enclosing class:
ErrorReporter.Impl
private static record ErrorReporter.Impl.ErrorList(ErrorReporter.Context element, List<ErrorReporter.Error> errors, Map<ErrorReporter.Context,ErrorReporter.Impl.ErrorList> children)
extends Record
- Mappings:
Namespace Name named net/minecraft/util/ErrorReporter$Impl$ErrorList
intermediary net/minecraft/class_8942$class_8943$class_11331
official bci$a$b
named element
intermediary comp_4201
official a
named errors
intermediary comp_4202
official b
named children
intermediary comp_4203
official c
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Map
<ErrorReporter.Context, ErrorReporter.Impl.ErrorList> The field for thechildren
record component.private final ErrorReporter.Context
The field for theelement
record component.private final List
<ErrorReporter.Error> The field for theerrors
record component. -
Constructor Summary
ConstructorsModifierConstructorDescriptionErrorList
(ErrorReporter.Context context) private
ErrorList
(ErrorReporter.Context context, List<ErrorReporter.Error> list, Map<ErrorReporter.Context, ErrorReporter.Impl.ErrorList> map) -
Method Summary
Modifier and TypeMethodDescriptionchildren()
Returns the value of thechildren
record component.element()
Returns the value of theelement
record component.final boolean
Indicates whether some other object is "equal to" this one.errors()
Returns the value of theerrors
record component.get
(ErrorReporter.Context context) final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
Constructor Details
-
ErrorList
- Mappings:
Namespace Name Mixin selector named <init>
Lnet/minecraft/util/ErrorReporter$Impl$ErrorList;<init>(Lnet/minecraft/util/ErrorReporter$Context;)V
intermediary <init>
Lnet/minecraft/class_8942$class_8943$class_11331;<init>(Lnet/minecraft/class_8942$class_11336;)V
official <init>
Lbci$a$b;<init>(Lbci$f;)V
-
ErrorList
private ErrorList(ErrorReporter.Context context, List<ErrorReporter.Error> list, Map<ErrorReporter.Context, ErrorReporter.Impl.ErrorList> map)
-
-
Method Details
-
get
- Mappings:
Namespace Name Mixin selector named get
Lnet/minecraft/util/ErrorReporter$Impl$ErrorList;get(Lnet/minecraft/util/ErrorReporter$Context;)Lnet/minecraft/util/ErrorReporter$Impl$ErrorList;
intermediary method_71354
Lnet/minecraft/class_8942$class_8943$class_11331;method_71354(Lnet/minecraft/class_8942$class_11336;)Lnet/minecraft/class_8942$class_8943$class_11331;
official a
Lbci$a$b;a(Lbci$f;)Lbci$a$b;
-
getMessages
- Mappings:
Namespace Name Mixin selector named getMessages
Lnet/minecraft/util/ErrorReporter$Impl$ErrorList;getMessages()Ljava/util/List;
intermediary method_71353
Lnet/minecraft/class_8942$class_8943$class_11331;method_71353()Ljava/util/List;
official a
Lbci$a$b;a()Ljava/util/List;
-
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)
. -
element
Returns the value of theelement
record component.- Returns:
- the value of the
element
record component
-
errors
Returns the value of theerrors
record component.- Returns:
- the value of the
errors
record component
-
children
Returns the value of thechildren
record component.- Returns:
- the value of the
children
record component
-