Package net.minecraft
Record Class ReadViewImpl.class_11355
java.lang.Object
java.lang.Record
net.minecraft.ReadViewImpl.class_11355
- Record Components:
name-index-tag-error-
- All Implemented Interfaces:
ErrorReporter.Error
- Enclosing class:
ReadViewImpl
public static record ReadViewImpl.class_11355(String name, int index, NbtElement tag, com.mojang.serialization.DataResult.Error<?> error)
extends Record
implements ErrorReporter.Error
- Mappings:
Namespace Name named net/minecraft/ReadViewImpl$class_11355intermediary net/minecraft/class_11352$class_11355official fbd$cnamed nameintermediary comp_4246official anamed indexintermediary comp_4247official bnamed tagintermediary comp_4248official cnamed errorintermediary comp_4249official d
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final com.mojang.serialization.DataResult.Error<?> The field for theerrorrecord component.private final intThe field for theindexrecord component.private final StringThe field for thenamerecord component.private final NbtElementThe field for thetagrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionclass_11355(String string, int int2, NbtElement nbtElement, com.mojang.serialization.DataResult.Error<?> error) -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.com.mojang.serialization.DataResult.Error<?> error()Returns the value of theerrorrecord component.final inthashCode()Returns a hash code value for this object.intindex()Returns the value of theindexrecord component.name()Returns the value of thenamerecord component.tag()Returns the value of thetagrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
Constructor Details
-
class_11355
public class_11355(String string, int int2, NbtElement nbtElement, com.mojang.serialization.DataResult.Error<?> error)
-
-
Method Details
-
getMessage
- Specified by:
getMessagein interfaceErrorReporter.Error- Mappings:
Namespace Name Mixin selector named getMessageLnet/minecraft/util/ErrorReporter$Error;getMessage()Ljava/lang/String;intermediary method_71358Lnet/minecraft/class_8942$class_11337;method_71358()Ljava/lang/String;official aLbao$g;a()Ljava/lang/String;
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
index
public int index()Returns the value of theindexrecord component.- Returns:
- the value of the
indexrecord component
-
tag
Returns the value of thetagrecord component.- Returns:
- the value of the
tagrecord component
-
error
public com.mojang.serialization.DataResult.Error<?> error()Returns the value of theerrorrecord component.- Returns:
- the value of the
errorrecord component
-