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 fxs$a
named items
intermediary comp_2983
official a
named isResultSlot
intermediary comp_2984
official b
-
Field Summary
Modifier and TypeFieldDescriptionprivate final boolean
The field for theisResultSlot
record component.The field for theitems
record component. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.get
(int index) final int
hashCode()
Returns a hash code value for this object.boolean
Returns the value of theisResultSlot
record component.items()
Returns the value of theitems
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
items
The field for theitems
record component. -
isResultSlot
private final boolean isResultSlotThe field for theisResultSlot
record 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
Lfxs$a;a(I)Lcxo;
-
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 theitems
record component.- Returns:
- the value of the
items
record component
-
isResultSlot
public boolean isResultSlot()Returns the value of theisResultSlot
record component.- Returns:
- the value of the
isResultSlot
record component
-