Package net.minecraft.storage
Record Class NbtReadView.DecodeAtIndexError
java.lang.Object
java.lang.Record
net.minecraft.storage.NbtReadView.DecodeAtIndexError
- Record Components:
name
-index
-element
-error
-
- All Implemented Interfaces:
ErrorReporter.Error
- Enclosing class:
NbtReadView
public static record NbtReadView.DecodeAtIndexError(String name, int index, NbtElement element, com.mojang.serialization.DataResult.Error<?> error)
extends Record
implements ErrorReporter.Error
- Mappings:
Namespace Name named net/minecraft/storage/NbtReadView$DecodeAtIndexError
intermediary net/minecraft/class_11352$class_11355
official fcy$c
named name
intermediary comp_4246
official a
named index
intermediary comp_4247
official b
named element
intermediary comp_4248
official c
named error
intermediary comp_4249
official d
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final NbtElement
The field for theelement
record component.private final com.mojang.serialization.DataResult.Error
<?> The field for theerror
record component.private final int
The field for theindex
record component.private final String
The field for thename
record component. -
Constructor Summary
ConstructorsConstructorDescriptionDecodeAtIndexError
(String string, int int2, NbtElement nbtElement, com.mojang.serialization.DataResult.Error<?> error) -
Method Summary
Modifier and TypeMethodDescriptionelement()
Returns the value of theelement
record component.final boolean
Indicates whether some other object is "equal to" this one.com.mojang.serialization.DataResult.Error
<?> error()
Returns the value of theerror
record component.final int
hashCode()
Returns a hash code value for this object.int
index()
Returns the value of theindex
record component.name()
Returns the value of thename
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
Constructor Details
-
DecodeAtIndexError
public DecodeAtIndexError(String string, int int2, NbtElement nbtElement, com.mojang.serialization.DataResult.Error<?> error)
-
-
Method Details
-
getMessage
- Specified by:
getMessage
in interfaceErrorReporter.Error
- Mappings:
Namespace Name Mixin selector named getMessage
Lnet/minecraft/util/ErrorReporter$Error;getMessage()Ljava/lang/String;
intermediary method_71358
Lnet/minecraft/class_8942$class_11337;method_71358()Ljava/lang/String;
official a
Lbci$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 thename
record component.- Returns:
- the value of the
name
record component
-
index
public int index()Returns the value of theindex
record component.- Returns:
- the value of the
index
record component
-
element
Returns the value of theelement
record component.- Returns:
- the value of the
element
record component
-
error
public com.mojang.serialization.DataResult.Error<?> error()Returns the value of theerror
record component.- Returns:
- the value of the
error
record component
-