Package net.minecraft.resource
Record Class NamespaceResourceManager.EntryList
java.lang.Object
java.lang.Record
net.minecraft.resource.NamespaceResourceManager.EntryList
- Record Components:
id
-metadataId
-fileSources
-metaSources
-
- Enclosing class:
NamespaceResourceManager
private static record NamespaceResourceManager.EntryList(Identifier id, Identifier metadataId, List<NamespaceResourceManager.FileSource> fileSources, Map<ResourcePack,InputSupplier<InputStream>> metaSources)
extends Record
- Mappings:
Namespace Name official ako$b
intermediary net/minecraft/class_3294$class_7081
named net/minecraft/resource/NamespaceResourceManager$EntryList
official a
intermediary comp_1005
named id
official b
intermediary comp_527
named metadataId
official c
intermediary comp_1006
named fileSources
official d
intermediary comp_1007
named metaSources
-
Field Summary
Modifier and TypeFieldDescriptionprivate final List<NamespaceResourceManager.FileSource>
The field for thefileSources
record component.private final Identifier
The field for theid
record component.private final Identifier
The field for themetadataId
record component.private final Map<ResourcePack,
InputSupplier<InputStream>> The field for themetaSources
record component. -
Constructor Summary
ModifierConstructorDescription(package private)
EntryList
(Identifier id) private
EntryList
(Identifier identifier, Identifier identifier2, List<NamespaceResourceManager.FileSource> list, Map<ResourcePack, InputSupplier<InputStream>> map) -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.Returns the value of thefileSources
record component.final int
hashCode()
Returns a hash code value for this object.id()
Returns the value of theid
record component.Returns the value of themetadataId
record component.Returns the value of themetaSources
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
id
The field for theid
record component. -
metadataId
The field for themetadataId
record component. -
fileSources
The field for thefileSources
record component. -
metaSources
The field for themetaSources
record component.
-
-
Constructor Details
-
EntryList
EntryList(Identifier id) - Mappings:
Namespace Name Mixin selector official <init>
Lako$b;<init>(Lacq;)V
intermediary <init>
Lnet/minecraft/class_3294$class_7081;<init>(Lnet/minecraft/class_2960;)V
named <init>
Lnet/minecraft/resource/NamespaceResourceManager$EntryList;<init>(Lnet/minecraft/util/Identifier;)V
-
EntryList
private EntryList(Identifier identifier, Identifier identifier2, List<NamespaceResourceManager.FileSource> list, Map<ResourcePack, InputSupplier<InputStream>> map)
-
-
Method Details
-
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)
. -
id
Returns the value of theid
record component.- Returns:
- the value of the
id
record component
-
metadataId
Returns the value of themetadataId
record component.- Returns:
- the value of the
metadataId
record component
-
fileSources
Returns the value of thefileSources
record component.- Returns:
- the value of the
fileSources
record component
-
metaSources
Returns the value of themetaSources
record component.- Returns:
- the value of the
metaSources
record component
-