Package net.minecraft.loot
Record Class LootTableReporter.MissingElementError
java.lang.Object
java.lang.Record
net.minecraft.loot.LootTableReporter.MissingElementError
- Record Components:
referenced
-
- All Implemented Interfaces:
ErrorReporter.Error
- Enclosing class:
LootTableReporter
public static record LootTableReporter.MissingElementError(RegistryKey<?> referenced)
extends Record
implements ErrorReporter.Error
- Mappings:
Namespace Name named net/minecraft/loot/LootTableReporter$MissingElementError
intermediary net/minecraft/class_58$class_11375
official fdp$a
named referenced
intermediary comp_4268
official a
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final RegistryKey
<?> The field for thereferenced
record component. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.RegistryKey
<?> Returns the value of thereferenced
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
referenced
The field for thereferenced
record component.
-
-
Constructor Details
-
MissingElementError
-
-
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)
. -
referenced
Returns the value of thereferenced
record component.- Returns:
- the value of the
referenced
record component
-