Package net.minecraft.client.font
Record Class FontManager.ProviderIndex
java.lang.Object
java.lang.Record
net.minecraft.client.font.FontManager.ProviderIndex
- Record Components:
- fontSets-
- allProviders-
- Enclosing class:
- FontManager
@Environment(CLIENT)
private static record FontManager.ProviderIndex(Map<Identifier,List<Font.FontFilterPair>> fontSets, List<Font> allProviders)
extends Record 
- Mappings:
- Namespace - Name - named - net/minecraft/client/font/FontManager$ProviderIndex- intermediary - net/minecraft/class_378$class_8536- official - frk$d- named - fontSets- intermediary - comp_2351- official - a- named - allProviders- intermediary - comp_1497- official - b
- 
Field SummaryFieldsModifier and TypeFieldDescriptionThe field for theallProvidersrecord component.private final Map<Identifier, List<Font.FontFilterPair>> The field for thefontSetsrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionProviderIndex(Map<Identifier, List<Font.FontFilterPair>> map, List<Font> list) 
- 
Method SummaryModifier and TypeMethodDescriptionReturns the value of theallProvidersrecord component.final booleanIndicates whether some other object is "equal to" this one.fontSets()Returns the value of thefontSetsrecord component.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
fontSetsThe field for thefontSetsrecord component.
- 
allProvidersThe field for theallProvidersrecord component.
 
- 
- 
Constructor Details- 
ProviderIndexProviderIndex(Map<Identifier, List<Font.FontFilterPair>> map, List<Font> list) 
 
- 
- 
Method Details- 
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).
- 
fontSetsReturns the value of thefontSetsrecord component.- Returns:
- the value of the fontSetsrecord component
 
- 
allProvidersReturns the value of theallProvidersrecord component.- Returns:
- the value of the allProvidersrecord component
 
 
-