Record Class DumpUtil.PlayerTextData

java.lang.Object
java.lang.Record
com.hypixel.hytale.server.core.util.DumpUtil.PlayerTextData
Enclosing class:
DumpUtil

public static record DumpUtil.PlayerTextData(@Nonnull UUID uuid, @Nullable String movementStates, @Nullable String movementManager, @Nullable String cameraManager) extends Record
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final String
    The field for the cameraManager record component.
    private final String
    The field for the movementManager record component.
    private final String
    The field for the movementStates record component.
    private final UUID
    The field for the uuid record component.
  • Constructor Summary

    Constructors
    Constructor
    Description
    PlayerTextData(UUID uuid, String movementStates, String movementManager, String cameraManager)
    Creates an instance of a PlayerTextData record class.
  • Method Summary

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

    Methods inherited from class java.lang.Object

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

    • uuid

      @Nonnull private final UUID uuid
      The field for the uuid record component.
    • movementStates

      @Nullable private final String movementStates
      The field for the movementStates record component.
    • movementManager

      @Nullable private final String movementManager
      The field for the movementManager record component.
    • cameraManager

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

    • PlayerTextData

      public PlayerTextData(@Nonnull UUID uuid, @Nullable String movementStates, @Nullable String movementManager, @Nullable String cameraManager)
      Creates an instance of a PlayerTextData record class.
      Parameters:
      uuid - the value for the uuid record component
      movementStates - the value for the movementStates record component
      movementManager - the value for the movementManager record component
      cameraManager - the value for the cameraManager record component
  • Method Details

    • 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.
    • uuid

      @Nonnull public UUID uuid()
      Returns the value of the uuid record component.
      Returns:
      the value of the uuid record component
    • movementStates

      @Nullable public String movementStates()
      Returns the value of the movementStates record component.
      Returns:
      the value of the movementStates record component
    • movementManager

      @Nullable public String movementManager()
      Returns the value of the movementManager record component.
      Returns:
      the value of the movementManager record component
    • cameraManager

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