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 SummaryFieldsModifier and TypeFieldDescriptionprivate final ItemStackThe field for theitemStackrecord component.private final ItemDisplayContextThe field for theitemTransformrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionItemRenderState(ItemStack itemStack, ItemDisplayContext itemTransform) Creates an instance of aItemRenderStaterecord class.
- 
Method SummaryModifier 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- 
itemStackThe field for theitemStackrecord component.
- 
itemTransformThe field for theitemTransformrecord component.
 
- 
- 
Constructor Details- 
ItemRenderStateCreates an instance of aItemRenderStaterecord class.- Parameters:
- itemStack- the value for the- itemStackrecord component
- itemTransform- the value for the- itemTransformrecord component
 
 
- 
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
itemStackReturns the value of theitemStackrecord component.- Returns:
- the value of the itemStackrecord component
 
- 
itemTransformReturns the value of theitemTransformrecord component.- Returns:
- the value of the itemTransformrecord component
 
 
-