Package net.minecraft.resource
Record Class NamespaceResourceManager.EntryList
java.lang.Object
java.lang.Record
net.minecraft.resource.NamespaceResourceManager.EntryList
- Record Components:
metadataId
-entries
-
- Enclosing class:
NamespaceResourceManager
private static record NamespaceResourceManager.EntryList(Identifier metadataId, List<NamespaceResourceManager.Entry> entries)
extends Record
- Mappings:
Namespace Name official aie$a
intermediary net/minecraft/class_3294$class_7081
named net/minecraft/resource/NamespaceResourceManager$EntryList
official a
intermediary comp_527
named metadataId
official b
intermediary comp_528
named entries
-
Field Summary
Modifier and TypeFieldDescriptionprivate final List<NamespaceResourceManager.Entry>
The field for theentries
record component.private final Identifier
The field for themetadataId
record component. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionentries()
Returns the value of theentries
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of themetadataId
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
metadataId
The field for themetadataId
record component. -
entries
The field for theentries
record component.
-
-
Constructor Details
-
EntryList
EntryList(Identifier identifier, List<NamespaceResourceManager.Entry> list)
-
-
Method Details
-
toReferenceList
- Mappings:
Namespace Name Mixin selector official c
Laie$a;c()Ljava/util/List;
intermediary method_41266
Lnet/minecraft/class_3294$class_7081;method_41266()Ljava/util/List;
named toReferenceList
Lnet/minecraft/resource/NamespaceResourceManager$EntryList;toReferenceList()Ljava/util/List;
-
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)
. -
metadataId
Returns the value of themetadataId
record component.- Returns:
- the value of the
metadataId
record component
-
entries
Returns the value of theentries
record component.- Returns:
- the value of the
entries
record component
-