Package net.minecraft.recipe.display
Record Class StonecutterRecipeDisplay
java.lang.Object
java.lang.Record
net.minecraft.recipe.display.StonecutterRecipeDisplay
- Record Components:
input
-result
-craftingStation
-
- All Implemented Interfaces:
RecipeDisplay
public record StonecutterRecipeDisplay(SlotDisplay input, SlotDisplay result, SlotDisplay craftingStation)
extends Record
implements RecipeDisplay
- Mappings:
Namespace Name named net/minecraft/recipe/display/StonecutterRecipeDisplay
intermediary net/minecraft/class_10315
official dds
named input
intermediary comp_3305
official f
named result
intermediary comp_3258
official g
named craftingStation
intermediary comp_3259
official h
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.recipe.display.RecipeDisplay
RecipeDisplay.Serializer<T extends RecipeDisplay>
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec
<StonecutterRecipeDisplay> private final SlotDisplay
The field for thecraftingStation
record component.private final SlotDisplay
The field for theinput
record component.static final PacketCodec
<RegistryByteBuf, StonecutterRecipeDisplay> private final SlotDisplay
The field for theresult
record component.static final RecipeDisplay.Serializer
<StonecutterRecipeDisplay> Fields inherited from interface net.minecraft.recipe.display.RecipeDisplay
STREAM_CODEC
-
Constructor Summary
ConstructorDescriptionStonecutterRecipeDisplay
(SlotDisplay slotDisplay, SlotDisplay slotDisplay2, SlotDisplay slotDisplay3) -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecraftingStation
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.input()
Returns the value of theinput
record component.result()
Returns the value of theresult
record component.final String
toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.recipe.display.RecipeDisplay
isEnabled
-
Field Details
-
input
The field for theinput
record component. -
result
The field for theresult
record component. -
craftingStation
The field for thecraftingStation
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/recipe/display/StonecutterRecipeDisplay;CODEC:Lcom/mojang/serialization/MapCodec;
intermediary field_54702
Lnet/minecraft/class_10315;field_54702:Lcom/mojang/serialization/MapCodec;
official a
Ldds;a:Lcom/mojang/serialization/MapCodec;
-
PACKET_CODEC
- Mappings:
Namespace Name Mixin selector named PACKET_CODEC
Lnet/minecraft/recipe/display/StonecutterRecipeDisplay;PACKET_CODEC:Lnet/minecraft/network/codec/PacketCodec;
intermediary field_54703
Lnet/minecraft/class_10315;field_54703:Lnet/minecraft/class_9139;
official b
Ldds;b:Lzt;
-
SERIALIZER
- Mappings:
Namespace Name Mixin selector named SERIALIZER
Lnet/minecraft/recipe/display/StonecutterRecipeDisplay;SERIALIZER:Lnet/minecraft/recipe/display/RecipeDisplay$Serializer;
intermediary field_54704
Lnet/minecraft/class_10315;field_54704:Lnet/minecraft/class_10295$class_10296;
official c
Ldds;c:Lddi$a;
-
-
Constructor Details
-
StonecutterRecipeDisplay
public StonecutterRecipeDisplay(SlotDisplay slotDisplay, SlotDisplay slotDisplay2, SlotDisplay slotDisplay3)
-
-
Method Details
-
serializer
- Specified by:
serializer
in interfaceRecipeDisplay
- Mappings:
Namespace Name Mixin selector named serializer
Lnet/minecraft/recipe/display/RecipeDisplay;serializer()Lnet/minecraft/recipe/display/RecipeDisplay$Serializer;
intermediary method_64726
Lnet/minecraft/class_10295;method_64726()Lnet/minecraft/class_10295$class_10296;
official a
Lddi;a()Lddi$a;
-
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
input
Returns the value of theinput
record component.- Returns:
- the value of the
input
record component
-
result
Returns the value of theresult
record component.- Specified by:
result
in interfaceRecipeDisplay
- Returns:
- the value of the
result
record component
-
craftingStation
Returns the value of thecraftingStation
record component.- Specified by:
craftingStation
in interfaceRecipeDisplay
- Returns:
- the value of the
craftingStation
record component
-