Record Class GhostSlots.GhostSlot
java.lang.Object
java.lang.Record
net.minecraft.client.gui.screens.recipebook.GhostSlots.GhostSlot
- Enclosing class:
GhostSlots
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final boolean
The field for theisResultSlot
record component.The field for theitems
record component. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.getItem
(int p_361727_) 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
-
GhostSlot
Creates an instance of aGhostSlot
record class.- Parameters:
items
- the value for theitems
record componentisResultSlot
- the value for theisResultSlot
record component
-
-
Method Details
-
getItem
-
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
-