Class ResourceImpl

java.lang.Object
net.minecraft.resource.ResourceImpl
All Implemented Interfaces:
Closeable, AutoCloseable, Resource

public class ResourceImpl extends Object implements Resource
Mappings:
Namespace Name
official agq
intermediary net/minecraft/class_3306
named net/minecraft/resource/ResourceImpl
  • Field Details

    • packName

      private final String packName
      Mappings:
      Namespace Name Mixin selector
      official a Lagq;a:Ljava/lang/String;
      intermediary field_14296 Lnet/minecraft/class_3306;field_14296:Ljava/lang/String;
      named packName Lnet/minecraft/resource/ResourceImpl;packName:Ljava/lang/String;
    • id

      private final Identifier id
      Mappings:
      Namespace Name Mixin selector
      official b Lagq;b:Lza;
      intermediary field_14299 Lnet/minecraft/class_3306;field_14299:Lnet/minecraft/class_2960;
      named id Lnet/minecraft/resource/ResourceImpl;id:Lnet/minecraft/util/Identifier;
    • inputStream

      private final InputStream inputStream
      Mappings:
      Namespace Name Mixin selector
      official c Lagq;c:Ljava/io/InputStream;
      intermediary field_14298 Lnet/minecraft/class_3306;field_14298:Ljava/io/InputStream;
      named inputStream Lnet/minecraft/resource/ResourceImpl;inputStream:Ljava/io/InputStream;
    • metaInputStream

      @Nullable private @Nullable InputStream metaInputStream
      Mappings:
      Namespace Name Mixin selector
      official d Lagq;d:Ljava/io/InputStream;
      intermediary field_14300 Lnet/minecraft/class_3306;field_14300:Ljava/io/InputStream;
      named metaInputStream Lnet/minecraft/resource/ResourceImpl;metaInputStream:Ljava/io/InputStream;
    • metadata

      @Nullable private @Nullable JsonObject metadata
      Mappings:
      Namespace Name Mixin selector
      official e Lagq;e:Lcom/google/gson/JsonObject;
      intermediary field_14302 Lnet/minecraft/class_3306;field_14302:Lcom/google/gson/JsonObject;
      named metadata Lnet/minecraft/resource/ResourceImpl;metadata:Lcom/google/gson/JsonObject;
  • Constructor Details

    • ResourceImpl

      public ResourceImpl(String packName, Identifier id, InputStream inputStream, @Nullable @Nullable InputStream metaInputStream)
      Mappings:
      Namespace Name Mixin selector
      official <init> Lagq;<init>(Ljava/lang/String;Lza;Ljava/io/InputStream;Ljava/io/InputStream;)V
      intermediary <init> Lnet/minecraft/class_3306;<init>(Ljava/lang/String;Lnet/minecraft/class_2960;Ljava/io/InputStream;Ljava/io/InputStream;)V
      named <init> Lnet/minecraft/resource/ResourceImpl;<init>(Ljava/lang/String;Lnet/minecraft/util/Identifier;Ljava/io/InputStream;Ljava/io/InputStream;)V
  • Method Details

    • getId

      public Identifier getId()
      Returns the location of this resource.

      Within each resource pack, this location is a unique identifier for a resource; however, in a resource manager, there may be multiple resources with the same location available.

      Specified by:
      getId in interface Resource
      Mappings:
      Namespace Name Mixin selector
      official a Lagh;a()Lza;
      intermediary method_14483 Lnet/minecraft/class_3298;method_14483()Lnet/minecraft/class_2960;
      named getId Lnet/minecraft/resource/Resource;getId()Lnet/minecraft/util/Identifier;
    • getInputStream

      public InputStream getInputStream()
      Returns the input stream of this resource.

      This input stream is closed when this resource is closed.

      Specified by:
      getInputStream in interface Resource
      Mappings:
      Namespace Name Mixin selector
      official b Lagh;b()Ljava/io/InputStream;
      intermediary method_14482 Lnet/minecraft/class_3298;method_14482()Ljava/io/InputStream;
      named getInputStream Lnet/minecraft/resource/Resource;getInputStream()Ljava/io/InputStream;
    • hasMetadata

      public boolean hasMetadata()
      Returns if this resource has any metadata.
      Specified by:
      hasMetadata in interface Resource
      Mappings:
      Namespace Name Mixin selector
      official c Lagh;c()Z
      intermediary method_14484 Lnet/minecraft/class_3298;method_14484()Z
      named hasMetadata Lnet/minecraft/resource/Resource;hasMetadata()Z
    • getMetadata

      @Nullable public <T> T getMetadata(ResourceMetadataReader<T> metaReader)
      Returns a metadata of this resource by the metaReader, or null if no such metadata exists.
      Specified by:
      getMetadata in interface Resource
      Parameters:
      metaReader - the metadata reader
      Mappings:
      Namespace Name Mixin selector
      official a Lagh;a(Lafm;)Ljava/lang/Object;
      intermediary method_14481 Lnet/minecraft/class_3298;method_14481(Lnet/minecraft/class_3270;)Ljava/lang/Object;
      named getMetadata Lnet/minecraft/resource/Resource;getMetadata(Lnet/minecraft/resource/metadata/ResourceMetadataReader;)Ljava/lang/Object;
    • getResourcePackName

      public String getResourcePackName()
      Returns the user-friendly name of the pack this resource is from.
      Specified by:
      getResourcePackName in interface Resource
      Mappings:
      Namespace Name Mixin selector
      official d Lagh;d()Ljava/lang/String;
      intermediary method_14480 Lnet/minecraft/class_3298;method_14480()Ljava/lang/String;
      named getResourcePackName Lnet/minecraft/resource/Resource;getResourcePackName()Ljava/lang/String;
    • close

      public void close() throws IOException
      Specified by:
      close in interface AutoCloseable
      Specified by:
      close in interface Closeable
      Throws:
      IOException