Package net.minecraft.client.texture
Record Class SpriteLoader.StitchResult
java.lang.Object
java.lang.Record
net.minecraft.client.texture.SpriteLoader.StitchResult
- Record Components:
width
-height
-mipLevel
-missing
-regions
-readyForUpload
-
- Enclosing class:
SpriteLoader
@Environment(CLIENT)
public static record SpriteLoader.StitchResult(int width, int height, int mipLevel, Sprite missing, Map<Identifier,Sprite> regions, CompletableFuture<Void> readyForUpload)
extends Record
- Mappings:
Namespace Name official fyz$a
intermediary net/minecraft/class_7766$class_7767
named net/minecraft/client/texture/SpriteLoader$StitchResult
official a
intermediary comp_1040
named width
official b
intermediary comp_1041
named height
official c
intermediary comp_1042
named mipLevel
official d
intermediary comp_1043
named missing
official e
intermediary comp_1044
named regions
official f
intermediary comp_1045
named readyForUpload
-
Field Summary
Modifier and TypeFieldDescriptionprivate final int
The field for theheight
record component.private final int
The field for themipLevel
record component.private final Sprite
The field for themissing
record component.private final CompletableFuture<Void>
The field for thereadyForUpload
record component.private final Map<Identifier,
Sprite> The field for theregions
record component.private final int
The field for thewidth
record component. -
Constructor Summary
ConstructorDescriptionStitchResult
(int int2, int int3, int int4, Sprite sprite, Map<Identifier, Sprite> map, CompletableFuture<Void> completableFuture) -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.int
height()
Returns the value of theheight
record component.int
mipLevel()
Returns the value of themipLevel
record component.missing()
Returns the value of themissing
record component.Returns the value of thereadyForUpload
record component.regions()
Returns the value of theregions
record component.final String
toString()
Returns a string representation of this record class.int
width()
Returns the value of thewidth
record component.
-
Field Details
-
width
private final int widthThe field for thewidth
record component. -
height
private final int heightThe field for theheight
record component. -
mipLevel
private final int mipLevelThe field for themipLevel
record component. -
missing
The field for themissing
record component. -
regions
The field for theregions
record component. -
readyForUpload
The field for thereadyForUpload
record component.
-
-
Constructor Details
-
StitchResult
public StitchResult(int int2, int int3, int int4, Sprite sprite, Map<Identifier, Sprite> map, CompletableFuture<Void> completableFuture)
-
-
Method Details
-
whenComplete
- Mappings:
Namespace Name Mixin selector official a
Lfyz$a;a()Ljava/util/concurrent/CompletableFuture;
intermediary method_45845
Lnet/minecraft/class_7766$class_7767;method_45845()Ljava/util/concurrent/CompletableFuture;
named whenComplete
Lnet/minecraft/client/texture/SpriteLoader$StitchResult;whenComplete()Ljava/util/concurrent/CompletableFuture;
-
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
width
public int width()Returns the value of thewidth
record component.- Returns:
- the value of the
width
record component
-
height
public int height()Returns the value of theheight
record component.- Returns:
- the value of the
height
record component
-
mipLevel
public int mipLevel()Returns the value of themipLevel
record component.- Returns:
- the value of the
mipLevel
record component
-
missing
Returns the value of themissing
record component.- Returns:
- the value of the
missing
record component
-
regions
Returns the value of theregions
record component.- Returns:
- the value of the
regions
record component
-
readyForUpload
Returns the value of thereadyForUpload
record component.- Returns:
- the value of the
readyForUpload
record component
-