Record Class LegacyUnicodeBitmapsProvider.Glyph

java.lang.Object
java.lang.Record
net.minecraft.client.gui.font.providers.LegacyUnicodeBitmapsProvider.Glyph
All Implemented Interfaces:
GlyphInfo
Enclosing class:
LegacyUnicodeBitmapsProvider

static record LegacyUnicodeBitmapsProvider.Glyph(int sourceX, int sourceY, int width, int height, NativeImage source) extends Record implements GlyphInfo
  • Nested Class Summary

    Nested classes/interfaces inherited from interface com.mojang.blaze3d.font.GlyphInfo

    GlyphInfo.SpaceGlyphInfo
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final int
    The field for the height record component.
    private final NativeImage
    The field for the source record component.
    private final int
    The field for the sourceX record component.
    private final int
    The field for the sourceY record component.
    private final int
    The field for the width record component.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Glyph(int sourceX, int sourceY, int width, int height, NativeImage source)
    Creates an instance of a Glyph record class.
  • Method Summary

    Modifier and Type
    Method
    Description
     
    final boolean
    Indicates whether some other object is "equal to" this one.
    float
     
    float
     
    float
     
    final int
    Returns a hash code value for this object.
    int
    Returns the value of the height record component.
    Returns the value of the source record component.
    int
    Returns the value of the sourceX record component.
    int
    Returns the value of the sourceY record component.
    final String
    Returns a string representation of this record class.
    int
    Returns the value of the width record component.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface com.mojang.blaze3d.font.GlyphInfo

    getAdvance
  • Field Details

    • sourceX

      private final int sourceX
      The field for the sourceX record component.
    • sourceY

      private final int sourceY
      The field for the sourceY 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.
    • source

      private final NativeImage source
      The field for the source record component.
  • Constructor Details

    • Glyph

      Glyph(int sourceX, int sourceY, int width, int height, NativeImage source)
      Creates an instance of a Glyph record class.
      Parameters:
      sourceX - the value for the sourceX record component
      sourceY - the value for the sourceY record component
      width - the value for the width record component
      height - the value for the height record component
      source - the value for the source record component
  • Method Details

    • getAdvance

      public float getAdvance()
      Specified by:
      getAdvance in interface GlyphInfo
    • getShadowOffset

      public float getShadowOffset()
      Specified by:
      getShadowOffset in interface GlyphInfo
    • getBoldOffset

      public float getBoldOffset()
      Specified by:
      getBoldOffset in interface GlyphInfo
    • bake

      public BakedGlyph bake(Function<SheetGlyphInfo,BakedGlyph> p_232670_)
      Specified by:
      bake in interface GlyphInfo
    • 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.
    • sourceX

      public int sourceX()
      Returns the value of the sourceX record component.
      Returns:
      the value of the sourceX record component
    • sourceY

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

      public NativeImage source()
      Returns the value of the source record component.
      Returns:
      the value of the source record component