Package net.minecraft.client.gui.screen
Record Class TitleScreen.DeprecationNotice
java.lang.Object
java.lang.Record
net.minecraft.client.gui.screen.TitleScreen.DeprecationNotice
- Record Components:
font-label-x-y-
- Enclosing class:
TitleScreen
@Environment(CLIENT)
private static record TitleScreen.DeprecationNotice(TextRenderer font, MultilineText label, int x, int y)
extends Record
- Mappings:
Namespace Name official ejv$aintermediary net/minecraft/class_442$class_7063named net/minecraft/client/gui/screen/TitleScreen$DeprecationNoticeofficial aintermediary comp_829named fontofficial bintermediary comp_518named labelofficial cintermediary comp_519named xofficial dintermediary comp_520named y
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final TextRendererThe field for thefontrecord component.private final MultilineTextThe field for thelabelrecord component.private final intThe field for thexrecord component.private final intThe field for theyrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionDeprecationNotice(TextRenderer textRenderer, MultilineText multilineText, int int2, int int3) -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.font()Returns the value of thefontrecord component.final inthashCode()Returns a hash code value for this object.label()Returns the value of thelabelrecord component.voidmethod_44065(MatrixStack matrixStack, int int2) final StringtoString()Returns a string representation of this record class.intx()Returns the value of thexrecord component.inty()Returns the value of theyrecord component.
-
Field Details
-
Constructor Details
-
DeprecationNotice
DeprecationNotice(TextRenderer textRenderer, MultilineText multilineText, int int2, int int3)
-
-
Method Details
-
method_44065
- Mappings:
Namespace Name Mixin selector official aLejv$a;a(Ldzb;I)Vintermediary method_44065Lnet/minecraft/class_442$class_7063;method_44065(Lnet/minecraft/class_4587;I)Vnamed method_44065Lnet/minecraft/client/gui/screen/TitleScreen$DeprecationNotice;method_44065(Lnet/minecraft/client/util/math/MatrixStack;I)V
-
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 '=='. -
font
Returns the value of thefontrecord component.- Returns:
- the value of the
fontrecord component
-
label
Returns the value of thelabelrecord component.- Returns:
- the value of the
labelrecord component
-
x
public int x()Returns the value of thexrecord component.- Returns:
- the value of the
xrecord component
-
y
public int y()Returns the value of theyrecord component.- Returns:
- the value of the
yrecord component
-