Record Class FurnaceRecipeDisplay
java.lang.Object
java.lang.Record
net.minecraft.world.item.crafting.display.FurnaceRecipeDisplay
- All Implemented Interfaces:
RecipeDisplay
public record FurnaceRecipeDisplay(SlotDisplay ingredient, SlotDisplay fuel, SlotDisplay result, SlotDisplay craftingStation, int duration, float experience)
extends Record
implements RecipeDisplay
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.world.item.crafting.display.RecipeDisplay
RecipeDisplay.Type<T extends RecipeDisplay> -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final SlotDisplayThe field for thecraftingStationrecord component.private final intThe field for thedurationrecord component.private final floatThe field for theexperiencerecord component.private final SlotDisplayThe field for thefuelrecord component.private final SlotDisplayThe field for theingredientrecord component.static final com.mojang.serialization.MapCodec<FurnaceRecipeDisplay> private final SlotDisplayThe field for theresultrecord component.static final StreamCodec<RegistryFriendlyByteBuf, FurnaceRecipeDisplay> static final RecipeDisplay.Type<FurnaceRecipeDisplay> Fields inherited from interface net.minecraft.world.item.crafting.display.RecipeDisplay
CODEC -
Constructor Summary
ConstructorsConstructorDescriptionFurnaceRecipeDisplay(SlotDisplay ingredient, SlotDisplay fuel, SlotDisplay result, SlotDisplay craftingStation, int duration, float experience) Creates an instance of aFurnaceRecipeDisplayrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecraftingStationrecord component.intduration()Returns the value of thedurationrecord component.final booleanIndicates whether some other object is "equal to" this one.floatReturns the value of theexperiencerecord component.fuel()Returns the value of thefuelrecord component.final inthashCode()Returns a hash code value for this object.Returns the value of theingredientrecord component.booleanisEnabled(FeatureFlagSet p_379749_) result()Returns the value of theresultrecord component.final StringtoString()Returns a string representation of this record class.type()
-
Field Details
-
ingredient
The field for theingredientrecord component. -
fuel
The field for thefuelrecord component. -
result
The field for theresultrecord component. -
craftingStation
The field for thecraftingStationrecord component. -
duration
private final int durationThe field for thedurationrecord component. -
experience
private final float experienceThe field for theexperiencerecord component. -
MAP_CODEC
-
STREAM_CODEC
-
TYPE
-
-
Constructor Details
-
FurnaceRecipeDisplay
public FurnaceRecipeDisplay(SlotDisplay ingredient, SlotDisplay fuel, SlotDisplay result, SlotDisplay craftingStation, int duration, float experience) Creates an instance of aFurnaceRecipeDisplayrecord class.- Parameters:
ingredient- the value for theingredientrecord componentfuel- the value for thefuelrecord componentresult- the value for theresultrecord componentcraftingStation- the value for thecraftingStationrecord componentduration- the value for thedurationrecord componentexperience- the value for theexperiencerecord component
-
-
Method Details
-
type
- Specified by:
typein interfaceRecipeDisplay
-
isEnabled
- Specified by:
isEnabledin interfaceRecipeDisplay
-
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 '=='. -
ingredient
Returns the value of theingredientrecord component.- Returns:
- the value of the
ingredientrecord component
-
fuel
Returns the value of thefuelrecord component.- Returns:
- the value of the
fuelrecord component
-
result
Returns the value of theresultrecord component.- Specified by:
resultin interfaceRecipeDisplay- Returns:
- the value of the
resultrecord component
-
craftingStation
Returns the value of thecraftingStationrecord component.- Specified by:
craftingStationin interfaceRecipeDisplay- Returns:
- the value of the
craftingStationrecord component
-
duration
public int duration()Returns the value of thedurationrecord component.- Returns:
- the value of the
durationrecord component
-
experience
public float experience()Returns the value of theexperiencerecord component.- Returns:
- the value of the
experiencerecord component
-