Record Class GhostRecipe.CyclingItem
java.lang.Object
java.lang.Record
net.minecraft.client.gui.screen.recipebook.GhostRecipe.CyclingItem
- Record Components:
- items-
- isResultSlot-
- Enclosing class:
- GhostRecipe
@Environment(CLIENT)
private static record GhostRecipe.CyclingItem(List<ItemStack> items, boolean isResultSlot)
extends Record
- Mappings:
- Namespace - Name - named - net/minecraft/client/gui/screen/recipebook/GhostRecipe$CyclingItem- intermediary - net/minecraft/class_9934$class_9935- official - fyh$a- named - items- intermediary - comp_2983- official - a- named - isResultSlot- intermediary - comp_2984- official - b
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final booleanThe field for theisResultSlotrecord component.The field for theitemsrecord component.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.get(int index) final inthashCode()Returns a hash code value for this object.booleanReturns the value of theisResultSlotrecord component.items()Returns the value of theitemsrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
itemsThe field for theitemsrecord component.
- 
isResultSlotprivate final boolean isResultSlotThe field for theisResultSlotrecord component.
 
- 
- 
Constructor Details- 
CyclingItem
 
- 
- 
Method Details- 
get- Mappings:
- Namespace - Name - Mixin selector - named - get- Lnet/minecraft/client/gui/screen/recipebook/GhostRecipe$CyclingItem;get(I)Lnet/minecraft/item/ItemStack;- intermediary - method_62035- Lnet/minecraft/class_9934$class_9935;method_62035(I)Lnet/minecraft/class_1799;- official - a- Lfyh$a;a(I)Lcwq;
 
- 
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 '=='.
- 
itemsReturns the value of theitemsrecord component.- Returns:
- the value of the itemsrecord component
 
- 
isResultSlotpublic boolean isResultSlot()Returns the value of theisResultSlotrecord component.- Returns:
- the value of the isResultSlotrecord component
 
 
-