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$CyclingItemintermediary net/minecraft/class_9934$class_9935official gdn$anamed itemsintermediary comp_2983official anamed isResultSlotintermediary comp_2984official b
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final booleanThe field for theisResultSlotrecord component.The field for theitemsrecord component. -
Constructor Summary
Constructors -
Method Summary
Modifier 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
-
items
The field for theitemsrecord component. -
isResultSlot
private final boolean isResultSlotThe field for theisResultSlotrecord component.
-
-
Constructor Details
-
CyclingItem
-
-
Method Details
-
get
- Mappings:
Namespace Name Mixin selector named getLnet/minecraft/client/gui/screen/recipebook/GhostRecipe$CyclingItem;get(I)Lnet/minecraft/item/ItemStack;intermediary method_62035Lnet/minecraft/class_9934$class_9935;method_62035(I)Lnet/minecraft/class_1799;official aLgdn$a;a(I)Ldak;
-
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 '=='. -
items
Returns the value of theitemsrecord component.- Returns:
- the value of the
itemsrecord component
-
isResultSlot
public boolean isResultSlot()Returns the value of theisResultSlotrecord component.- Returns:
- the value of the
isResultSlotrecord component
-