Package net.minecraft.world.entity
Record Class Display.ItemDisplay.ItemRenderState
java.lang.Object
java.lang.Record
net.minecraft.world.entity.Display.ItemDisplay.ItemRenderState
- Enclosing class:
Display.ItemDisplay
public static record Display.ItemDisplay.ItemRenderState(ItemStack itemStack, ItemDisplayContext itemTransform)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final ItemStackThe field for theitemStackrecord component.private final ItemDisplayContextThe field for theitemTransformrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionItemRenderState(ItemStack itemStack, ItemDisplayContext itemTransform) Creates an instance of aItemRenderStaterecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theitemStackrecord component.Returns the value of theitemTransformrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
itemStack
The field for theitemStackrecord component. -
itemTransform
The field for theitemTransformrecord component.
-
-
Constructor Details
-
ItemRenderState
Creates an instance of aItemRenderStaterecord class.- Parameters:
itemStack- the value for theitemStackrecord componentitemTransform- the value for theitemTransformrecord component
-
-
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 theitemStackrecord component.- Returns:
- the value of the
itemStackrecord component
-
itemTransform
Returns the value of theitemTransformrecord component.- Returns:
- the value of the
itemTransformrecord component
-