Record Class TextFeatureRenderer.Content.Text

java.lang.Object
java.lang.Record
net.minecraft.client.renderer.feature.TextFeatureRenderer.Content.Text
All Implemented Interfaces:
TextFeatureRenderer.Content
Enclosing interface:
TextFeatureRenderer.Content

public static record TextFeatureRenderer.Content.Text(float x, float y, FormattedCharSequence string, boolean dropShadow, int color, int backgroundColor, int outlineColor) extends Record implements TextFeatureRenderer.Content
  • Nested Class Summary

  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final int
    The field for the backgroundColor record component.
    private final int
    The field for the color record component.
    private final boolean
    The field for the dropShadow record component.
    private final int
    The field for the outlineColor record component.
    private final FormattedCharSequence
    The field for the string record component.
    private final float
    The field for the x record component.
    private final float
    The field for the y record component.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Text(float x, float y, FormattedCharSequence string, boolean dropShadow, int color, int backgroundColor, int outlineColor)
    Creates an instance of a Text record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns the value of the backgroundColor record component.
    int
    Returns the value of the color record component.
    boolean
    Returns the value of the dropShadow record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    int
    Returns the value of the outlineColor record component.
    Returns the value of the string record component.
    final String
    Returns a string representation of this record class.
    float
    x()
    Returns the value of the x record component.
    float
    y()
    Returns the value of the y record component.

    Methods inherited from class Object

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

    • x

      private final float x
      The field for the x record component.
    • y

      private final float y
      The field for the y record component.
    • string

      private final FormattedCharSequence string
      The field for the string record component.
    • dropShadow

      private final boolean dropShadow
      The field for the dropShadow record component.
    • color

      private final int color
      The field for the color record component.
    • backgroundColor

      private final int backgroundColor
      The field for the backgroundColor record component.
    • outlineColor

      private final int outlineColor
      The field for the outlineColor record component.
  • Constructor Details

    • Text

      public Text(float x, float y, FormattedCharSequence string, boolean dropShadow, int color, int backgroundColor, int outlineColor)
      Creates an instance of a Text record class.
      Parameters:
      x - the value for the x record component
      y - the value for the y record component
      string - the value for the string record component
      dropShadow - the value for the dropShadow record component
      color - the value for the color record component
      backgroundColor - the value for the backgroundColor record component
      outlineColor - the value for the outlineColor 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 the compare method from their corresponding wrapper classes.
      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.
    • x

      public float x()
      Returns the value of the x record component.
      Returns:
      the value of the x record component
    • y

      public float y()
      Returns the value of the y record component.
      Returns:
      the value of the y record component
    • string

      public FormattedCharSequence string()
      Returns the value of the string record component.
      Returns:
      the value of the string record component
    • dropShadow

      public boolean dropShadow()
      Returns the value of the dropShadow record component.
      Returns:
      the value of the dropShadow record component
    • color

      public int color()
      Returns the value of the color record component.
      Returns:
      the value of the color record component
    • backgroundColor

      public int backgroundColor()
      Returns the value of the backgroundColor record component.
      Returns:
      the value of the backgroundColor record component
    • outlineColor

      public int outlineColor()
      Returns the value of the outlineColor record component.
      Returns:
      the value of the outlineColor record component