Record Class DrawContext.StrokedRectangle

java.lang.Object
java.lang.Record
net.minecraft.client.gui.DrawContext.StrokedRectangle
Record Components:
x -
y -
width -
height -
color -
Enclosing class:
DrawContext

@Environment(CLIENT) private static record DrawContext.StrokedRectangle(int x, int y, int width, int height, int color) extends Record
Mappings:
Namespace Name
named net/minecraft/client/gui/DrawContext$StrokedRectangle
intermediary net/minecraft/class_332$class_11731
official gdd$a
named x
intermediary comp_4600
official a
named y
intermediary comp_4601
official b
named width
intermediary comp_4602
official c
named height
intermediary comp_4603
official d
named color
intermediary comp_4604
official e
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final int
    The field for the color record component.
    private final int
    The field for the height record component.
    private final int
    The field for the width record component.
    private final int
    The field for the x record component.
    private final int
    The field for the y record component.
  • Constructor Summary

    Constructors
    Constructor
    Description
    StrokedRectangle(int int2, int int3, int int4, int int5, int int6)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns the value of the color record component.
    void
    draw(DrawContext context)
     
    final boolean
    equals(Object object)
    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 height record component.
    final String
    Returns a string representation of this record class.
    int
    Returns the value of the width record component.
    int
    x()
    Returns the value of the x record component.
    int
    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

    • x

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

      private final int y
      The field for the y record component.
    • width

      private final int width
      The field for the width record component.
    • height

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

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

    • StrokedRectangle

      StrokedRectangle(int int2, int int3, int int4, int int5, int int6)
  • Method Details

    • draw

      public void draw(DrawContext context)
      Mappings:
      Namespace Name Mixin selector
      named draw Lnet/minecraft/client/gui/DrawContext$StrokedRectangle;draw(Lnet/minecraft/client/gui/DrawContext;)V
      intermediary method_73200 Lnet/minecraft/class_332$class_11731;method_73200(Lnet/minecraft/class_332;)V
      official a Lgdd$a;a(Lgdd;)V
    • 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 object)
      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 '=='.
      Specified by:
      equals in class Record
      Parameters:
      object - the object with which to compare
      Returns:
      true if this object is the same as the object argument; false otherwise.
    • x

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

      public int y()
      Returns the value of the y record component.
      Returns:
      the value of the y record component
    • width

      public int width()
      Returns the value of the width record component.
      Returns:
      the value of the width record component
    • height

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

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