Record Class AdvancementTabType.Textures
java.lang.Object
java.lang.Record
net.minecraft.client.gui.screen.advancement.AdvancementTabType.Textures
- Record Components:
first
-middle
-last
-
- Enclosing class:
AdvancementTabType
@Environment(CLIENT)
private static record AdvancementTabType.Textures(Identifier first, Identifier middle, Identifier last)
extends Record
- Mappings:
Namespace Name official fdo$a
intermediary net/minecraft/class_453$class_8670
named net/minecraft/client/gui/screen/advancement/AdvancementTabType$Textures
official a
intermediary comp_1608
named first
official b
intermediary comp_1609
named middle
official c
intermediary comp_1610
named last
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Identifier
The field for thefirst
record component.private final Identifier
The field for thelast
record component.private final Identifier
The field for themiddle
record component. -
Constructor Summary
ConstructorsConstructorDescriptionTextures
(Identifier identifier, Identifier identifier2, Identifier identifier3) -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.first()
Returns the value of thefirst
record component.final int
hashCode()
Returns a hash code value for this object.last()
Returns the value of thelast
record component.middle()
Returns the value of themiddle
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
Constructor Details
-
Textures
Textures(Identifier identifier, Identifier identifier2, Identifier identifier3)
-
-
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)
. -
first
Returns the value of thefirst
record component.- Returns:
- the value of the
first
record component
-
middle
Returns the value of themiddle
record component.- Returns:
- the value of the
middle
record component
-
last
Returns the value of thelast
record component.- Returns:
- the value of the
last
record component
-