Record Class ModelTextures.Textures
java.lang.Object
java.lang.Record
net.minecraft.client.render.model.ModelTextures.Textures
- Record Components:
values
-
- Enclosing class:
ModelTextures
@Environment(CLIENT)
public static record ModelTextures.Textures(Map<String,ModelTextures.Entry> values)
extends Record
- Mappings:
Namespace Name named net/minecraft/client/render/model/ModelTextures$Textures
intermediary net/minecraft/class_10419$class_10420
official gns$a
named values
intermediary comp_3376
official b
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ModelTextures.Textures
private final Map
<String, ModelTextures.Entry> The field for thevalues
record component. -
Constructor Summary
Constructors -
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.final String
toString()
Returns a string representation of this record class.values()
Returns the value of thevalues
record component.
-
Field Details
-
values
The field for thevalues
record component. -
EMPTY
- Mappings:
Namespace Name Mixin selector named EMPTY
Lnet/minecraft/client/render/model/ModelTextures$Textures;EMPTY:Lnet/minecraft/client/render/model/ModelTextures$Textures;
intermediary field_55278
Lnet/minecraft/class_10419$class_10420;field_55278:Lnet/minecraft/class_10419$class_10420;
official a
Lgns$a;a:Lgns$a;
-
-
Constructor Details
-
Method Details
-
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)
. -
values
Returns the value of thevalues
record component.- Returns:
- the value of the
values
record component
-