yarn/mappings/net/minecraft/resource/Resource.mapping

27 lines
1.3 KiB
Plaintext
Raw Normal View History

2019-06-28 17:55:20 -04:00
CLASS net/minecraft/class_3298 net/minecraft/resource/Resource
COMMENT A resource of binary data.
COMMENT
COMMENT <p>The resource must be closed before disposal to avoid resource leaks.
COMMENT
COMMENT @see ResourceFactory#getResource(Identifier)
COMMENT @see ResourceManager#getAllResources(Identifier)
2019-06-28 17:55:20 -04:00
METHOD method_14480 getResourcePackName ()Ljava/lang/String;
COMMENT Returns the user-friendly name of the pack this resource is from.
2019-06-28 17:55:20 -04:00
METHOD method_14481 getMetadata (Lnet/minecraft/class_3270;)Ljava/lang/Object;
COMMENT Returns a metadata of this resource by the {@code metaReader}, or {@code null}
COMMENT if no such metadata exists.
ARG 1 metaReader
COMMENT the metadata reader
2019-06-28 17:55:20 -04:00
METHOD method_14482 getInputStream ()Ljava/io/InputStream;
COMMENT Returns the input stream of this resource.
COMMENT
COMMENT <p>This input stream is closed when this resource is closed.
2019-06-28 17:55:20 -04:00
METHOD method_14483 getId ()Lnet/minecraft/class_2960;
COMMENT Returns the location of this resource.
COMMENT
COMMENT <p>Within each resource pack, this location is a unique identifer for a
COMMENT resource; however, in a resource manager, there may be multiple resources
COMMENT with the same location available.
2021-03-31 14:47:17 -04:00
METHOD method_14484 hasMetadata ()Z
COMMENT Returns if this resource has any metadata.