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-
- stretchInner-
- All Implemented Interfaces:
- Scaling
- Enclosing interface:
- Scaling
@Environment(CLIENT)
public static record Scaling.NineSlice(int width, int height, Scaling.NineSlice.Border border, boolean stretchInner)
extends Record
implements Scaling
- Mappings:
- Namespace - Name - named - net/minecraft/client/texture/Scaling$NineSlice- intermediary - net/minecraft/class_8690$class_8691- official - hgl$a- named - width- intermediary - comp_1637- official - d- named - height- intermediary - comp_1638- official - e- named - border- intermediary - comp_1639- official - f- named - stretchInner- intermediary - comp_3202- official - g
- 
Nested Class SummaryNested ClassesNested classes/interfaces inherited from interface net.minecraft.client.texture.ScalingScaling.NineSlice, Scaling.Stretch, Scaling.Tile, Scaling.Type
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final Scaling.NineSlice.BorderThe field for theborderrecord component.static final com.mojang.serialization.MapCodec<Scaling.NineSlice> private final intThe field for theheightrecord component.private final booleanThe field for thestretchInnerrecord component.private final intThe field for thewidthrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionNineSlice(int int2, int int3, Scaling.NineSlice.Border border, boolean bool) 
- 
Method SummaryModifier and TypeMethodDescriptionborder()Returns the value of theborderrecord component.final booleanIndicates whether some other object is "equal to" this one.getType()final inthashCode()Returns a hash code value for this object.intheight()Returns the value of theheightrecord component.booleanReturns the value of thestretchInnerrecord component.final StringtoString()Returns a string representation of this record class.private static com.mojang.serialization.DataResult<Scaling.NineSlice> validate(Scaling.NineSlice nineSlice) 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.
- 
borderThe field for theborderrecord component.
- 
stretchInnerprivate final boolean stretchInnerThe field for thestretchInnerrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/client/texture/Scaling$NineSlice;CODEC:Lcom/mojang/serialization/MapCodec;- intermediary - field_45650- Lnet/minecraft/class_8690$class_8691;field_45650:Lcom/mojang/serialization/MapCodec;- official - c- Lhgl$a;c:Lcom/mojang/serialization/MapCodec;
 
 
- 
- 
Constructor Details- 
NineSlice
 
- 
- 
Method Details- 
validateprivate static com.mojang.serialization.DataResult<Scaling.NineSlice> validate(Scaling.NineSlice nineSlice) - Mappings:
- Namespace - Name - Mixin selector - named - validate- Lnet/minecraft/client/texture/Scaling$NineSlice;validate(Lnet/minecraft/client/texture/Scaling$NineSlice;)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;- official - a- Lhgl$a;a(Lhgl$a;)Lcom/mojang/serialization/DataResult;
 
- 
getType- Specified by:
- getTypein interface- Scaling
- Mappings:
- Namespace - Name - Mixin selector - named - getType- Lnet/minecraft/client/texture/Scaling;getType()Lnet/minecraft/client/texture/Scaling$Type;- intermediary - method_52876- Lnet/minecraft/class_8690;method_52876()Lnet/minecraft/class_8690$class_8695;- official - a- Lhgl;a()Lhgl$d;
 
- 
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
 
- 
borderReturns the value of theborderrecord component.- Returns:
- the value of the borderrecord component
 
- 
stretchInnerpublic boolean stretchInner()Returns the value of thestretchInnerrecord component.- Returns:
- the value of the stretchInnerrecord component
 
 
-