Package net.minecraft

Record Class ReadViewImpl.class_11354

java.lang.Object
java.lang.Record
net.minecraft.ReadViewImpl.class_11354
Record Components:
name -
tag -
error -
All Implemented Interfaces:
ErrorReporter.Error
Enclosing class:
ReadViewImpl

public static record ReadViewImpl.class_11354(String name, NbtElement tag, com.mojang.serialization.DataResult.Error<?> error) extends Record implements ErrorReporter.Error
Mappings:
Namespace Name
named net/minecraft/ReadViewImpl$class_11354
intermediary net/minecraft/class_11352$class_11354
official fbd$b
named name
intermediary comp_4243
official a
named tag
intermediary comp_4244
official b
named error
intermediary comp_4245
official c
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final com.mojang.serialization.DataResult.Error<?>
    The field for the error record component.
    private final String
    The field for the name record component.
    private final NbtElement
    The field for the tag record component.
  • Constructor Summary

    Constructors
    Constructor
    Description
    class_11354(String string, NbtElement nbtElement, com.mojang.serialization.DataResult.Error<?> error)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    final boolean
    equals(Object object)
    Indicates whether some other object is "equal to" this one.
    com.mojang.serialization.DataResult.Error<?>
    Returns the value of the error record component.
     
    final int
    Returns a hash code value for this object.
    Returns the value of the name record component.
    tag()
    Returns the value of the tag record component.
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • name

      private final String name
      The field for the name record component.
    • tag

      private final NbtElement tag
      The field for the tag record component.
    • error

      private final com.mojang.serialization.DataResult.Error<?> error
      The field for the error record component.
  • Constructor Details

    • class_11354

      public class_11354(String string, NbtElement nbtElement, com.mojang.serialization.DataResult.Error<?> error)
  • Method Details

    • getMessage

      public String getMessage()
      Specified by:
      getMessage in interface ErrorReporter.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 Lbao$g;a()Ljava/lang/String;
    • toString

      public final 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object object)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      object - the object with which to compare
      Returns:
      true if this object is the same as the object argument; false otherwise.
    • name

      public String name()
      Returns the value of the name record component.
      Returns:
      the value of the name record component
    • tag

      public NbtElement tag()
      Returns the value of the tag record component.
      Returns:
      the value of the tag record component
    • error

      public com.mojang.serialization.DataResult.Error<?> error()
      Returns the value of the error record component.
      Returns:
      the value of the error record component