Record Class SpriteAtlasManager.Atlas
java.lang.Object
java.lang.Record
net.minecraft.client.render.model.SpriteAtlasManager.Atlas
- Record Components:
atlas-loader-
- All Implemented Interfaces:
AutoCloseable
- Enclosing class:
SpriteAtlasManager
@Environment(CLIENT)
private static record SpriteAtlasManager.Atlas(SpriteAtlasTexture atlas, SpriteAtlasManager.SpriteResourceLoader loader)
extends Record
implements AutoCloseable
- Mappings:
Namespace Name official fpe$aintermediary net/minecraft/class_4724$class_7772named net/minecraft/client/render/model/SpriteAtlasManager$Atlasofficial aintermediary comp_1051named atlasofficial bintermediary comp_1052named loader
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final SpriteAtlasTextureThe field for theatlasrecord component.private final SpriteAtlasManager.SpriteResourceLoaderThe field for theloaderrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionAtlas(SpriteAtlasTexture spriteAtlasTexture, SpriteAtlasManager.SpriteResourceLoader spriteResourceLoader) -
Method Summary
Modifier and TypeMethodDescriptionatlas()Returns the value of theatlasrecord component.voidclose()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.loader()Returns the value of theloaderrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
Constructor Details
-
Atlas
Atlas(SpriteAtlasTexture spriteAtlasTexture, SpriteAtlasManager.SpriteResourceLoader spriteResourceLoader)
-
-
Method Details
-
close
public void close()- Specified by:
closein interfaceAutoCloseable
-
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). -
atlas
Returns the value of theatlasrecord component.- Returns:
- the value of the
atlasrecord component
-
loader
Returns the value of theloaderrecord component.- Returns:
- the value of the
loaderrecord component
-