Package net.minecraft.client.font
Record Class FontStorage.GlyphPair
java.lang.Object
java.lang.Record
net.minecraft.client.font.FontStorage.GlyphPair
- Record Components:
- glyph-
- advanceValidatedGlyph-
- Enclosing class:
- FontStorage
@Environment(CLIENT)
private static record FontStorage.GlyphPair(Glyph glyph, Glyph advanceValidatedGlyph)
extends Record
- Mappings:
- Namespace - Name - named - net/minecraft/client/font/FontStorage$GlyphPair- intermediary - net/minecraft/class_377$class_7647- official - frm$a- named - glyph- intermediary - comp_979- official - a- named - advanceValidatedGlyph- intermediary - comp_980- official - b
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final GlyphThe field for theadvanceValidatedGlyphrecord component.private final GlyphThe field for theglyphrecord component.(package private) static final FontStorage.GlyphPair
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionReturns the value of theadvanceValidatedGlyphrecord component.final booleanIndicates whether some other object is "equal to" this one.(package private) GlyphgetGlyph(boolean validateAdvance) glyph()Returns the value of theglyphrecord component.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
glyphThe field for theglyphrecord component.
- 
advanceValidatedGlyphThe field for theadvanceValidatedGlyphrecord component.
- 
MISSING- Mappings:
- Namespace - Name - Mixin selector - named - MISSING- Lnet/minecraft/client/font/FontStorage$GlyphPair;MISSING:Lnet/minecraft/client/font/FontStorage$GlyphPair;- intermediary - field_39935- Lnet/minecraft/class_377$class_7647;field_39935:Lnet/minecraft/class_377$class_7647;- official - c- Lfrm$a;c:Lfrm$a;
 
 
- 
- 
Constructor Details- 
GlyphPair
 
- 
- 
Method Details- 
getGlyph- Mappings:
- Namespace - Name - Mixin selector - named - getGlyph- Lnet/minecraft/client/font/FontStorage$GlyphPair;getGlyph(Z)Lnet/minecraft/client/font/Glyph;- intermediary - method_45080- Lnet/minecraft/class_377$class_7647;method_45080(Z)Lnet/minecraft/class_379;- official - a- Lfrm$a;a(Z)Lfdt;
 
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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 withObjects::equals(Object,Object).
- 
glyphReturns the value of theglyphrecord component.- Returns:
- the value of the glyphrecord component
 
- 
advanceValidatedGlyphReturns the value of theadvanceValidatedGlyphrecord component.- Returns:
- the value of the advanceValidatedGlyphrecord component
 
 
-