Package net.minecraft.component.type
Record Class ContainerComponent.Slot
java.lang.Object
java.lang.Record
net.minecraft.component.type.ContainerComponent.Slot
- Record Components:
- index-
- item-
- Enclosing class:
- ContainerComponent
- Mappings:
- Namespace - Name - named - net/minecraft/component/type/ContainerComponent$Slot- intermediary - net/minecraft/class_9288$class_9289- official - czi$a- named - index- intermediary - comp_2398- official - b- named - item- intermediary - comp_2399- official - c
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier 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- 
indexprivate final int indexThe field for theindexrecord component.
- 
itemThe field for theitemrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/component/type/ContainerComponent$Slot;CODEC:Lcom/mojang/serialization/Codec;- intermediary - field_49339- Lnet/minecraft/class_9288$class_9289;field_49339:Lcom/mojang/serialization/Codec;- official - a- Lczi$a;a:Lcom/mojang/serialization/Codec;
 
 
- 
- 
Constructor Details- 
SlotSlot(int int2, ItemStack itemStack) 
 
- 
- 
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='.
- 
indexpublic int index()Returns the value of theindexrecord component.- Returns:
- the value of the indexrecord component
 
- 
itemReturns the value of theitemrecord component.- Returns:
- the value of the itemrecord component
 
 
-