Record Class SpriteLoader.Preparations
java.lang.Object
java.lang.Record
net.minecraft.client.renderer.texture.SpriteLoader.Preparations
- Enclosing class:
- SpriteLoader
public static record SpriteLoader.Preparations(int width, int height, int mipLevel, TextureAtlasSprite missing, Map<ResourceLocation,TextureAtlasSprite> regions, CompletableFuture<Void> readyForUpload)
extends Record 
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final intThe field for theheightrecord component.private final intThe field for themipLevelrecord component.private final TextureAtlasSpriteThe field for themissingrecord component.private final CompletableFuture<Void>The field for thereadyForUploadrecord component.private final Map<ResourceLocation,TextureAtlasSprite> The field for theregionsrecord component.private final intThe field for thewidthrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionPreparations(int width, int height, int mipLevel, TextureAtlasSprite missing, Map<ResourceLocation, TextureAtlasSprite> regions, CompletableFuture<Void> readyForUpload) Creates an instance of aPreparationsrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intheight()Returns the value of theheightrecord component.intmipLevel()Returns the value of themipLevelrecord component.missing()Returns the value of themissingrecord component.Returns the value of thereadyForUploadrecord component.regions()Returns the value of theregionsrecord component.final StringtoString()Returns a string representation of this record class.intwidth()Returns the value of thewidthrecord component.
- 
Field Details- 
widthprivate final int widthThe field for thewidthrecord component.
- 
heightprivate final int heightThe field for theheightrecord component.
- 
mipLevelprivate final int mipLevelThe field for themipLevelrecord component.
- 
missingThe field for themissingrecord component.
- 
regionsThe field for theregionsrecord component.
- 
readyForUploadThe field for thereadyForUploadrecord component.
 
- 
- 
Constructor Details- 
Preparationspublic Preparations(int width, int height, int mipLevel, TextureAtlasSprite missing, Map<ResourceLocation, TextureAtlasSprite> regions, CompletableFuture<Void> readyForUpload) Creates an instance of aPreparationsrecord class.- Parameters:
- width- the value for the- widthrecord component
- height- the value for the- heightrecord component
- mipLevel- the value for the- mipLevelrecord component
- missing- the value for the- missingrecord component
- regions- the value for the- regionsrecord component
- readyForUpload- the value for the- readyForUploadrecord component
 
 
- 
- 
Method Details- 
waitForUpload
- 
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='.
- 
widthpublic int width()Returns the value of thewidthrecord component.- Returns:
- the value of the widthrecord component
 
- 
heightpublic int height()Returns the value of theheightrecord component.- Returns:
- the value of the heightrecord component
 
- 
mipLevelpublic int mipLevel()Returns the value of themipLevelrecord component.- Returns:
- the value of the mipLevelrecord component
 
- 
missingReturns the value of themissingrecord component.- Returns:
- the value of the missingrecord component
 
- 
regionsReturns the value of theregionsrecord component.- Returns:
- the value of the regionsrecord component
 
- 
readyForUploadReturns the value of thereadyForUploadrecord component.- Returns:
- the value of the readyForUploadrecord component
 
 
-