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 SummaryFieldsModifier and TypeFieldDescriptionprivate final List<NamespaceResourceManager.Entry>The field for theentriesrecord component.private final IdentifierThe field for themetadataIdrecord component.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionentries()Returns the value of theentriesrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of themetadataIdrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
metadataIdThe field for themetadataIdrecord component.
- 
entriesThe field for theentriesrecord component.
 
- 
- 
Constructor Details- 
EntryListEntryList(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;
 
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
metadataIdReturns the value of themetadataIdrecord component.- Returns:
- the value of the metadataIdrecord component
 
- 
entriesReturns the value of theentriesrecord component.- Returns:
- the value of the entriesrecord component
 
 
-