Record Class ItemContainerContents.Slot
java.lang.Object
java.lang.Record
net.minecraft.world.item.component.ItemContainerContents.Slot
- Enclosing class:
ItemContainerContents
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<ItemContainerContents.Slot> private final intThe field for theindexrecord component.private final ItemStackThe field for theitemrecord component. -
Constructor Summary
Constructors -
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.intindex()Returns the value of theindexrecord component.item()Returns the value of theitemrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
index
private final int indexThe field for theindexrecord component. -
item
The field for theitemrecord component. -
CODEC
-
-
Constructor Details
-
Slot
Slot(int index, ItemStack item) Creates an instance of aSlotrecord class.- Parameters:
index- the value for theindexrecord componentitem- the value for theitemrecord 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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
index
public int index()Returns the value of theindexrecord component.- Returns:
- the value of the
indexrecord component
-
item
Returns the value of theitemrecord component.- Returns:
- the value of the
itemrecord component
-