Record Class GuiTextHit

java.lang.Object
java.lang.Record
com.render.api.gui.GuiTextHit
Record Components:
utf16Offset - source UTF-16 offset clamped to a grapheme boundary
trailing - whether the hit selected the visual trailing edge
insideInk - whether the pointer was inside the layout's ink bounds
lineIndex - zero-based visual line index

public record GuiTextHit(int utf16Offset, boolean trailing, boolean insideInk, int lineIndex) extends Record
Result of shaped text hit testing.
  • Constructor Summary

    Constructors
    Constructor
    Description
    GuiTextHit(int utf16Offset, boolean trailing, boolean insideInk, int lineIndex)
    Creates an instance of a GuiTextHit record class.
  • Method Summary

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

    Methods inherited from class Object

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

    • GuiTextHit

      public GuiTextHit(int utf16Offset, boolean trailing, boolean insideInk, int lineIndex)
      Creates an instance of a GuiTextHit record class.
      Parameters:
      utf16Offset - the value for the utf16Offset record component
      trailing - the value for the trailing record component
      insideInk - the value for the insideInk record component
      lineIndex - the value for the lineIndex 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 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.
    • utf16Offset

      public int utf16Offset()
      Returns the value of the utf16Offset record component.
      Returns:
      the value of the utf16Offset record component
    • trailing

      public boolean trailing()
      Returns the value of the trailing record component.
      Returns:
      the value of the trailing record component
    • insideInk

      public boolean insideInk()
      Returns the value of the insideInk record component.
      Returns:
      the value of the insideInk record component
    • lineIndex

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