Package net.minecraft.client.gui.screens
Record Class TitleScreen.Warning32Bit
java.lang.Object
java.lang.Record
net.minecraft.client.gui.screens.TitleScreen.Warning32Bit
- Enclosing class:
- TitleScreen
static record TitleScreen.Warning32Bit(MultiLineLabel label, int x, int y, CompletableFuture<Boolean> realmsSubscriptionFuture)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final MultiLineLabelThe field for thelabelrecord component.private final CompletableFuture<Boolean>The field for therealmsSubscriptionFuturerecord component.private final intThe field for thexrecord component.private final intThe field for theyrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionWarning32Bit(MultiLineLabel label, int x, int y, CompletableFuture<Boolean> realmsSubscriptionFuture) Creates an instance of aWarning32Bitrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.label()Returns the value of thelabelrecord component.Returns the value of therealmsSubscriptionFuturerecord component.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
-
label
The field for thelabelrecord component. -
x
private final int xThe field for thexrecord component. -
y
private final int yThe field for theyrecord component. -
realmsSubscriptionFuture
The field for therealmsSubscriptionFuturerecord component.
-
-
Constructor Details
-
Warning32Bit
Warning32Bit(MultiLineLabel label, int x, int y, CompletableFuture<Boolean> realmsSubscriptionFuture) Creates an instance of aWarning32Bitrecord class.- Parameters:
label- the value for thelabelrecord componentx- the value for thexrecord componenty- the value for theyrecord componentrealmsSubscriptionFuture- the value for therealmsSubscriptionFuturerecord component
-
-
Method Details
-
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 '=='. -
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
-
realmsSubscriptionFuture
Returns the value of therealmsSubscriptionFuturerecord component.- Returns:
- the value of the
realmsSubscriptionFuturerecord component
-