Record Class GameConfig.QuickPlayData

java.lang.Object
java.lang.Record
net.minecraft.client.main.GameConfig.QuickPlayData
Enclosing class:
GameConfig

public static record GameConfig.QuickPlayData(@Nullable String path, @Nullable String singleplayer, @Nullable String multiplayer, @Nullable String realms) extends Record
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final String
    The field for the multiplayer record component.
    private final String
    The field for the path record component.
    private final String
    The field for the realms record component.
    private final String
    The field for the singleplayer record component.
  • Constructor Summary

    Constructors
    Constructor
    Description
    QuickPlayData(String path, String singleplayer, String multiplayer, String realms)
    Creates an instance of a QuickPlayData record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    boolean
     
    Returns the value of the multiplayer record component.
    Returns the value of the path record component.
    Returns the value of the realms record component.
    Returns the value of the singleplayer record component.
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • path

      @Nullable private final String path
      The field for the path record component.
    • singleplayer

      @Nullable private final String singleplayer
      The field for the singleplayer record component.
    • multiplayer

      @Nullable private final String multiplayer
      The field for the multiplayer record component.
    • realms

      @Nullable private final String realms
      The field for the realms record component.
  • Constructor Details

    • QuickPlayData

      public QuickPlayData(@Nullable String path, @Nullable String singleplayer, @Nullable String multiplayer, @Nullable String realms)
      Creates an instance of a QuickPlayData record class.
      Parameters:
      path - the value for the path record component
      singleplayer - the value for the singleplayer record component
      multiplayer - the value for the multiplayer record component
      realms - the value for the realms record component
  • Method Details

    • isEnabled

      public boolean isEnabled()
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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. All components in this record class are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • path

      @Nullable public String path()
      Returns the value of the path record component.
      Returns:
      the value of the path record component
    • singleplayer

      @Nullable public String singleplayer()
      Returns the value of the singleplayer record component.
      Returns:
      the value of the singleplayer record component
    • multiplayer

      @Nullable public String multiplayer()
      Returns the value of the multiplayer record component.
      Returns:
      the value of the multiplayer record component
    • realms

      @Nullable public String realms()
      Returns the value of the realms record component.
      Returns:
      the value of the realms record component