Record Class SubmitNodeStorage.TextSubmit

java.lang.Object
java.lang.Record
net.minecraft.client.renderer.SubmitNodeStorage.TextSubmit
Enclosing class:
SubmitNodeStorage

public static record SubmitNodeStorage.TextSubmit(Matrix4f pose, float x, float y, FormattedCharSequence string, boolean dropShadow, Font.DisplayMode displayMode, int lightCoords, int color, int backgroundColor, int outlineColor) extends Record
  • 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 Font.DisplayMode
    The field for the displayMode record component.
    private final boolean
    The field for the dropShadow record component.
    private final int
    The field for the lightCoords record component.
    private final int
    The field for the outlineColor record component.
    private final Matrix4f
    The field for the pose 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
    TextSubmit(Matrix4f pose, float x, float y, FormattedCharSequence string, boolean dropShadow, Font.DisplayMode displayMode, int lightCoords, int color, int backgroundColor, int outlineColor)
    Creates an instance of a TextSubmit 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.
    Returns the value of the displayMode 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 lightCoords record component.
    int
    Returns the value of the outlineColor record component.
    Returns the value of the pose 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 java.lang.Object

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

    • pose

      private final Matrix4f pose
      The field for the pose record component.
    • 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.
    • displayMode

      private final Font.DisplayMode displayMode
      The field for the displayMode record component.
    • lightCoords

      private final int lightCoords
      The field for the lightCoords 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

    • TextSubmit

      public TextSubmit(Matrix4f pose, float x, float y, FormattedCharSequence string, boolean dropShadow, Font.DisplayMode displayMode, int lightCoords, int color, int backgroundColor, int outlineColor)
      Creates an instance of a TextSubmit record class.
      Parameters:
      pose - the value for the pose record component
      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
      displayMode - the value for the displayMode record component
      lightCoords - the value for the lightCoords 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 '=='.
      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.
    • pose

      public Matrix4f pose()
      Returns the value of the pose record component.
      Returns:
      the value of the pose record component
    • 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
    • displayMode

      public Font.DisplayMode displayMode()
      Returns the value of the displayMode record component.
      Returns:
      the value of the displayMode record component
    • lightCoords

      public int lightCoords()
      Returns the value of the lightCoords record component.
      Returns:
      the value of the lightCoords 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