Record Class NbtReadView.ExpectedTypeAtIndexError

java.lang.Object
java.lang.Record
net.minecraft.storage.NbtReadView.ExpectedTypeAtIndexError
Record Components:
name -
index -
expected -
actual -
All Implemented Interfaces:
ErrorReporter.Error
Enclosing class:
NbtReadView

public static record NbtReadView.ExpectedTypeAtIndexError(String name, int index, NbtType<?> expected, NbtType<?> actual) extends Record implements ErrorReporter.Error
Mappings:
Namespace Name
named net/minecraft/storage/NbtReadView$ExpectedTypeAtIndexError
intermediary net/minecraft/class_11352$class_11359
official fio$g
named name
intermediary comp_4251
official a
named index
intermediary comp_4252
official b
named expected
intermediary comp_4253
official c
named actual
intermediary comp_4254
official d
  • Field Details

    • name

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

      private final int index
      The field for the index record component.
    • expected

      private final NbtType<?> expected
      The field for the expected record component.
    • actual

      private final NbtType<?> actual
      The field for the actual record component.
  • Constructor Details

    • ExpectedTypeAtIndexError

      public ExpectedTypeAtIndexError(String string, int int2, NbtType<?> nbtType, NbtType<?> nbtType2)
  • 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 Lbfp$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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      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
    • index

      public int index()
      Returns the value of the index record component.
      Returns:
      the value of the index record component
    • expected

      public NbtType<?> expected()
      Returns the value of the expected record component.
      Returns:
      the value of the expected record component
    • actual

      public NbtType<?> actual()
      Returns the value of the actual record component.
      Returns:
      the value of the actual record component