Package net.minecraft.client.font
Record Class ReferenceFont
java.lang.Object
java.lang.Record
net.minecraft.client.font.ReferenceFont
- Record Components:
id
-
- All Implemented Interfaces:
FontLoader
@Environment(CLIENT)
public record ReferenceFont(Identifier id)
extends Record
implements FontLoader
- Mappings:
Namespace Name official evq
intermediary net/minecraft/class_8541
named net/minecraft/client/font/ReferenceFont
official c
intermediary comp_1523
named id
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.client.font.FontLoader
FontLoader.Loadable, FontLoader.Reference
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec<ReferenceFont>
private final Identifier
The field for theid
record component. -
Constructor Summary
ConstructorDescriptionCreates an instance of aReferenceFont
record class. -
Method Summary
Modifier and TypeMethodDescriptioncom.mojang.datafixers.util.Either<FontLoader.Loadable,
FontLoader.Reference> build()
final boolean
Indicates whether some other object is "equal to" this one.getType()
final int
hashCode()
Returns a hash code value for this object.id()
Returns the value of theid
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
id
The field for theid
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector official a
Levq;a:Lcom/mojang/serialization/MapCodec;
intermediary field_44762
Lnet/minecraft/class_8541;field_44762:Lcom/mojang/serialization/MapCodec;
named CODEC
Lnet/minecraft/client/font/ReferenceFont;CODEC:Lcom/mojang/serialization/MapCodec;
-
-
Constructor Details
-
ReferenceFont
Creates an instance of aReferenceFont
record class.- Parameters:
id
- the value for theid
record component
-
-
Method Details
-
getType
- Specified by:
getType
in interfaceFontLoader
- Mappings:
Namespace Name Mixin selector official a
Levo;a()Levp;
intermediary method_51731
Lnet/minecraft/class_389;method_51731()Lnet/minecraft/class_394;
named getType
Lnet/minecraft/client/font/FontLoader;getType()Lnet/minecraft/client/font/FontType;
-
build
- Specified by:
build
in interfaceFontLoader
- Mappings:
Namespace Name Mixin selector official b
Levo;b()Lcom/mojang/datafixers/util/Either;
intermediary method_51734
Lnet/minecraft/class_389;method_51734()Lcom/mojang/datafixers/util/Either;
named build
Lnet/minecraft/client/font/FontLoader;build()Lcom/mojang/datafixers/util/Either;
-
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. -
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. -
equals
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 withObjects::equals(Object,Object)
. -
id
Returns the value of theid
record component.- Returns:
- the value of the
id
record component
-