Package net.minecraft.entity.decoration
Record Class DisplayEntity.ItemDisplayEntity.Data
java.lang.Object
java.lang.Record
net.minecraft.entity.decoration.DisplayEntity.ItemDisplayEntity.Data
- Record Components:
itemStack
-itemTransform
-
- Enclosing class:
DisplayEntity.ItemDisplayEntity
public static record DisplayEntity.ItemDisplayEntity.Data(ItemStack itemStack, ModelTransformationMode itemTransform)
extends Record
- Mappings:
Namespace Name named net/minecraft/entity/decoration/DisplayEntity$ItemDisplayEntity$Data
intermediary net/minecraft/class_8113$class_8122$class_8226
official bsv$g$a
named itemStack
intermediary comp_1322
official a
named itemTransform
intermediary comp_1323
official b
-
Field Summary
Modifier and TypeFieldDescriptionprivate final ItemStack
The field for theitemStack
record component.private final ModelTransformationMode
The field for theitemTransform
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.Returns the value of theitemStack
record component.Returns the value of theitemTransform
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
itemStack
The field for theitemStack
record component. -
itemTransform
The field for theitemTransform
record component.
-
-
Constructor Details
-
Data
-
-
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)
. -
itemStack
Returns the value of theitemStack
record component.- Returns:
- the value of the
itemStack
record component
-
itemTransform
Returns the value of theitemTransform
record component.- Returns:
- the value of the
itemTransform
record component
-