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 named net/minecraft/client/resource/language/LanguageDefinition
intermediary net/minecraft/class_1077
official gqi
named region
intermediary comp_1198
official b
named name
intermediary comp_1199
official c
named rightToLeft
intermediary comp_1200
official d
-
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 named CODEC
Lnet/minecraft/client/resource/language/LanguageDefinition;CODEC:Lcom/mojang/serialization/Codec;
intermediary field_41862
Lnet/minecraft/class_1077;field_41862:Lcom/mojang/serialization/Codec;
official a
Lgqi;a:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
LanguageDefinition
- Mappings:
Namespace Name Mixin selector named <init>
Lnet/minecraft/client/resource/language/LanguageDefinition;<init>(Ljava/lang/String;Ljava/lang/String;Z)V
intermediary <init>
Lnet/minecraft/class_1077;<init>(Ljava/lang/String;Ljava/lang/String;Z)V
official <init>
Lgqi;<init>(Ljava/lang/String;Ljava/lang/String;Z)V
-
-
Method Details
-
getDisplayText
- Mappings:
Namespace Name Mixin selector named getDisplayText
Lnet/minecraft/client/resource/language/LanguageDefinition;getDisplayText()Lnet/minecraft/text/Text;
intermediary method_48303
Lnet/minecraft/class_1077;method_48303()Lnet/minecraft/class_2561;
official a
Lgqi;a()Lxp;
-
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
-