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
Modifier and TypeFieldDescriptionprivate final ItemStack
The field for theitemStack
record component.private final ItemDisplayContext
The field for theitemTransform
record component. -
Constructor Summary
ConstructorDescriptionItemRenderState
(ItemStack itemStack, ItemDisplayContext itemTransform) Creates an instance of aItemRenderState
record class. -
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
-
ItemRenderState
Creates an instance of aItemRenderState
record class.- Parameters:
itemStack
- the value for theitemStack
record componentitemTransform
- the value for theitemTransform
record 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 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
-