Package net.minecraft.storage
Record Class NbtWriteView.EncodeFieldError
java.lang.Object
java.lang.Record
net.minecraft.storage.NbtWriteView.EncodeFieldError
- Record Components:
name
-value
-error
-
- All Implemented Interfaces:
ErrorReporter.Error
- Enclosing class:
NbtWriteView
public static record NbtWriteView.EncodeFieldError(String name, Object value, com.mojang.serialization.DataResult.Error<?> error)
extends Record
implements ErrorReporter.Error
- Mappings:
Namespace Name named net/minecraft/storage/NbtWriteView$EncodeFieldError
intermediary net/minecraft/class_11362$class_11363
official fcz$a
named name
intermediary comp_4260
official a
named value
intermediary comp_4261
official b
named error
intermediary comp_4262
official c
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionEncodeFieldError
(String string, Object object, com.mojang.serialization.DataResult.Error<?> error) -
Method Summary
Modifier and TypeMethodDescriptionfinal 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.name()
Returns the value of thename
record component.final String
toString()
Returns a string representation of this record class.value()
Returns the value of thevalue
record component.
-
Field Details
-
Constructor Details
-
EncodeFieldError
-
-
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
name
Returns the value of thename
record component.- Returns:
- the value of the
name
record component
-
value
Returns the value of thevalue
record component.- Returns:
- the value of the
value
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
-