Record Class ScoreboardTeamParameters

java.lang.Object
java.lang.Record
devs.beer.nativepackets.api.ScoreboardTeamParameters

public record ScoreboardTeamParameters(NativeText displayName, NativeText prefix, NativeText suffix, int options, TeamNameTagVisibility nameTagVisibility, TeamCollisionRule collisionRule, NativeChatColor color) extends Record
Team presentation fields used by add and update operations.
  • Constructor Details

    • ScoreboardTeamParameters

      public ScoreboardTeamParameters(NativeText displayName, NativeText prefix, NativeText suffix, int options, TeamNameTagVisibility nameTagVisibility, TeamCollisionRule collisionRule, NativeChatColor color)
      Creates an instance of a ScoreboardTeamParameters record class.
      Parameters:
      displayName - the value for the displayName record component
      prefix - the value for the prefix record component
      suffix - the value for the suffix record component
      options - the value for the options record component
      nameTagVisibility - the value for the nameTagVisibility record component
      collisionRule - the value for the collisionRule record component
      color - the value for the color 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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      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.
    • displayName

      public NativeText displayName()
      Returns the value of the displayName record component.
      Returns:
      the value of the displayName record component
    • prefix

      public NativeText prefix()
      Returns the value of the prefix record component.
      Returns:
      the value of the prefix record component
    • suffix

      public NativeText suffix()
      Returns the value of the suffix record component.
      Returns:
      the value of the suffix record component
    • options

      public int options()
      Returns the value of the options record component.
      Returns:
      the value of the options record component
    • nameTagVisibility

      public TeamNameTagVisibility nameTagVisibility()
      Returns the value of the nameTagVisibility record component.
      Returns:
      the value of the nameTagVisibility record component
    • collisionRule

      public TeamCollisionRule collisionRule()
      Returns the value of the collisionRule record component.
      Returns:
      the value of the collisionRule record component
    • color

      public NativeChatColor color()
      Returns the value of the color record component.
      Returns:
      the value of the color record component