Record Class SpriteAtlasManager.Atlas
java.lang.Object
java.lang.Record
net.minecraft.client.render.model.SpriteAtlasManager.Atlas
- Record Components:
- atlas-
- atlasInfoLocation-
- All Implemented Interfaces:
- AutoCloseable
- Enclosing class:
- SpriteAtlasManager
@Environment(CLIENT)
private static record SpriteAtlasManager.Atlas(SpriteAtlasTexture atlas, Identifier atlasInfoLocation)
extends Record
implements AutoCloseable
- Mappings:
- Namespace - Name - named - net/minecraft/client/render/model/SpriteAtlasManager$Atlas- intermediary - net/minecraft/class_4724$class_7772- official - hgs$a- named - atlas- intermediary - comp_1051- official - a- named - atlasInfoLocation- intermediary - comp_1168- official - b
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final SpriteAtlasTextureThe field for theatlasrecord component.private final IdentifierThe field for theatlasInfoLocationrecord component.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionatlas()Returns the value of theatlasrecord component.Returns the value of theatlasInfoLocationrecord component.voidclose()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
atlasThe field for theatlasrecord component.
- 
atlasInfoLocationThe field for theatlasInfoLocationrecord component.
 
- 
- 
Constructor Details- 
AtlasAtlas(SpriteAtlasTexture spriteAtlasTexture, Identifier identifier) 
 
- 
- 
Method Details- 
closepublic void close()- Specified by:
- closein interface- AutoCloseable
 
- 
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).
- 
atlasReturns the value of theatlasrecord component.- Returns:
- the value of the atlasrecord component
 
- 
atlasInfoLocationReturns the value of theatlasInfoLocationrecord component.- Returns:
- the value of the atlasInfoLocationrecord component
 
 
-