Package net.minecraft.client
Record Class RunArgs.QuickPlay
java.lang.Object
java.lang.Record
net.minecraft.client.RunArgs.QuickPlay
- Record Components:
- path-
- singleplayer-
- multiplayer-
- realms-
- Enclosing class:
- RunArgs
@Environment(CLIENT)
public static record RunArgs.QuickPlay(@Nullable String path, @Nullable String singleplayer, @Nullable String multiplayer, @Nullable String realms)
extends Record
- Mappings:
- Namespace - Name - official - ezy$c- intermediary - net/minecraft/class_542$class_8495- named - net/minecraft/client/RunArgs$QuickPlay- official - a- intermediary - comp_1476- named - path- official - b- intermediary - comp_1477- named - singleplayer- official - c- intermediary - comp_1478- named - multiplayer- official - d- intermediary - comp_1479- named - realms
- 
Field SummaryFieldsModifier and TypeFieldDescriptionThe field for themultiplayerrecord component.The field for thepathrecord component.The field for therealmsrecord component.The field for thesingleplayerrecord component.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanReturns the value of themultiplayerrecord component.path()Returns the value of thepathrecord component.realms()Returns the value of therealmsrecord component.Returns the value of thesingleplayerrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
pathThe field for thepathrecord component.
- 
singleplayerThe field for thesingleplayerrecord component.
- 
multiplayerThe field for themultiplayerrecord component.
- 
realmsThe field for therealmsrecord component.
 
- 
- 
Constructor Details- 
QuickPlay
 
- 
- 
Method Details- 
isEnabledpublic boolean isEnabled()- Mappings:
- Namespace - Name - Mixin selector - official - a- Lezy$c;a()Z- intermediary - method_51257- Lnet/minecraft/class_542$class_8495;method_51257()Z- named - isEnabled- Lnet/minecraft/client/RunArgs$QuickPlay;isEnabled()Z
 
- 
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. All components in this record class are compared withObjects::equals(Object,Object).
- 
pathReturns the value of thepathrecord component.- Returns:
- the value of the pathrecord component
 
- 
singleplayerReturns the value of thesingleplayerrecord component.- Returns:
- the value of the singleplayerrecord component
 
- 
multiplayerReturns the value of themultiplayerrecord component.- Returns:
- the value of the multiplayerrecord component
 
- 
realmsReturns the value of therealmsrecord component.- Returns:
- the value of the realmsrecord component
 
 
-