Package net.minecraft
Record Class class_8448.class_8450
java.lang.Object
java.lang.Record
net.minecraft.class_8448.class_8450
- Record Components:
id
-display
-data
-
- Enclosing class:
class_8448
@Environment(CLIENT)
private static record class_8448.class_8450(class_8373 id, Text display, class_8367.class_8368 data)
extends Record
- Mappings:
Namespace Name official fcx$b
intermediary net/minecraft/class_8448$class_8450
named net/minecraft/class_8448$class_8450
official a
intermediary comp_1447
named id
official b
intermediary comp_1448
named display
official c
intermediary comp_1449
named data
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final class_8367.class_8368
The field for thedata
record component.private final Text
The field for thedisplay
record component.private final class_8373
The field for theid
record component. -
Constructor Summary
ConstructorsConstructorDescriptionclass_8450
(class_8373 class_8373, Text text, class_8367.class_8368 class_8368) -
Method Summary
Modifier and TypeMethodDescriptiondata()
Returns the value of thedata
record component.display()
Returns the value of thedisplay
record component.final boolean
Indicates whether some other object is "equal to" this one.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
-
Constructor Details
-
class_8450
class_8450(class_8373 class_8373, Text text, class_8367.class_8368 class_8368)
-
-
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)
. -
id
Returns the value of theid
record component.- Returns:
- the value of the
id
record component
-
display
Returns the value of thedisplay
record component.- Returns:
- the value of the
display
record component
-
data
Returns the value of thedata
record component.- Returns:
- the value of the
data
record component
-