Package net.minecraft.client.texture
Record Class Scaling.NineSlice
java.lang.Object
java.lang.Record
net.minecraft.client.texture.Scaling.NineSlice
- Record Components:
width
-height
-border
-
- All Implemented Interfaces:
Scaling
- Enclosing interface:
Scaling
@Environment(CLIENT)
public static record Scaling.NineSlice(int width, int height, Scaling.NineSlice.Border border)
extends Record
implements Scaling
- Mappings:
Namespace Name official gaw$a
intermediary net/minecraft/class_8690$class_8691
named net/minecraft/client/texture/Scaling$NineSlice
official d
intermediary comp_1637
named width
official e
intermediary comp_1638
named height
official f
intermediary comp_1639
named border
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.client.texture.Scaling
Scaling.NineSlice, Scaling.Stretch, Scaling.Tile, Scaling.Type
-
Field Summary
Modifier and TypeFieldDescriptionprivate final Scaling.NineSlice.Border
The field for theborder
record component.static final com.mojang.serialization.Codec<Scaling.NineSlice>
private final int
The field for theheight
record component.private final int
The field for thewidth
record component. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionborder()
Returns the value of theborder
record component.final boolean
Indicates whether some other object is "equal to" this one.getType()
final int
hashCode()
Returns a hash code value for this object.int
height()
Returns the value of theheight
record component.final String
toString()
Returns a string representation of this record class.private static com.mojang.serialization.DataResult<Scaling.NineSlice>
validate
(Scaling.NineSlice nineSlice) 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. -
border
The field for theborder
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector official c
Lgaw$a;c:Lcom/mojang/serialization/Codec;
intermediary field_45650
Lnet/minecraft/class_8690$class_8691;field_45650:Lcom/mojang/serialization/Codec;
named CODEC
Lnet/minecraft/client/texture/Scaling$NineSlice;CODEC:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
NineSlice
-
-
Method Details
-
validate
private static com.mojang.serialization.DataResult<Scaling.NineSlice> validate(Scaling.NineSlice nineSlice) - Mappings:
Namespace Name Mixin selector official a
Lgaw$a;a(Lgaw$a;)Lcom/mojang/serialization/DataResult;
intermediary method_53493
Lnet/minecraft/class_8690$class_8691;method_53493(Lnet/minecraft/class_8690$class_8691;)Lcom/mojang/serialization/DataResult;
named validate
Lnet/minecraft/client/texture/Scaling$NineSlice;validate(Lnet/minecraft/client/texture/Scaling$NineSlice;)Lcom/mojang/serialization/DataResult;
-
getType
- Specified by:
getType
in interfaceScaling
- Mappings:
Namespace Name Mixin selector official a
Lgaw;a()Lgaw$d;
intermediary method_52876
Lnet/minecraft/class_8690;method_52876()Lnet/minecraft/class_8690$class_8695;
named getType
Lnet/minecraft/client/texture/Scaling;getType()Lnet/minecraft/client/texture/Scaling$Type;
-
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
-
border
Returns the value of theborder
record component.- Returns:
- the value of the
border
record component
-