Package net.minecraft.storage
Record Class NbtReadView.DecodeMapError
java.lang.Object
java.lang.Record
net.minecraft.storage.NbtReadView.DecodeMapError
- Record Components:
error-
- All Implemented Interfaces:
ErrorReporter.Error
- Enclosing class:
NbtReadView
public static record NbtReadView.DecodeMapError(com.mojang.serialization.DataResult.Error<?> error)
extends Record
implements ErrorReporter.Error
- Mappings:
Namespace Name named net/minecraft/storage/NbtReadView$DecodeMapErrorintermediary net/minecraft/class_11352$class_11356official fin$dnamed errorintermediary comp_4250official a
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionDecodeMapError(com.mojang.serialization.DataResult.Error<?> error) Creates an instance of aDecodeMapErrorrecord class. -
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.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
error
private final com.mojang.serialization.DataResult.Error<?> errorThe field for theerrorrecord component.
-
-
Constructor Details
-
DecodeMapError
public DecodeMapError(com.mojang.serialization.DataResult.Error<?> error) Creates an instance of aDecodeMapErrorrecord class.- Parameters:
error- the value for theerrorrecord component
-
-
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 aLbfo$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. All components in this record class are compared withObjects::equals(Object,Object). -
error
public com.mojang.serialization.DataResult.Error<?> error()Returns the value of theerrorrecord component.- Returns:
- the value of the
errorrecord component
-