Record Class LanguageDefinition
java.lang.Object
java.lang.Record
net.minecraft.client.resource.language.LanguageDefinition
- Record Components:
region
-name
-rightToLeft
-
@Environment(CLIENT)
public record LanguageDefinition(String region, String name, boolean rightToLeft)
extends Record
- Mappings:
Namespace Name official gal
intermediary net/minecraft/class_1077
named net/minecraft/client/resource/language/LanguageDefinition
official b
intermediary comp_1198
named region
official c
intermediary comp_1199
named name
official d
intermediary comp_1200
named rightToLeft
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<LanguageDefinition>
private final String
The field for thename
record component.private final String
The field for theregion
record component.private final boolean
The field for therightToLeft
record component. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.name()
Returns the value of thename
record component.region()
Returns the value of theregion
record component.boolean
Returns the value of therightToLeft
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
region
The field for theregion
record component. -
name
The field for thename
record component. -
rightToLeft
private final boolean rightToLeftThe field for therightToLeft
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector official a
Lgal;a:Lcom/mojang/serialization/Codec;
intermediary field_41862
Lnet/minecraft/class_1077;field_41862:Lcom/mojang/serialization/Codec;
named CODEC
Lnet/minecraft/client/resource/language/LanguageDefinition;CODEC:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
LanguageDefinition
- Mappings:
Namespace Name Mixin selector official <init>
Lgal;<init>(Ljava/lang/String;Ljava/lang/String;Z)V
intermediary <init>
Lnet/minecraft/class_1077;<init>(Ljava/lang/String;Ljava/lang/String;Z)V
named <init>
Lnet/minecraft/client/resource/language/LanguageDefinition;<init>(Ljava/lang/String;Ljava/lang/String;Z)V
-
-
Method Details
-
getDisplayText
- Mappings:
Namespace Name Mixin selector official a
Lgal;a()Ltl;
intermediary method_48303
Lnet/minecraft/class_1077;method_48303()Lnet/minecraft/class_2561;
named getDisplayText
Lnet/minecraft/client/resource/language/LanguageDefinition;getDisplayText()Lnet/minecraft/text/Text;
-
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
region
Returns the value of theregion
record component.- Returns:
- the value of the
region
record component
-
name
Returns the value of thename
record component.- Returns:
- the value of the
name
record component
-
rightToLeft
public boolean rightToLeft()Returns the value of therightToLeft
record component.- Returns:
- the value of the
rightToLeft
record component
-