Record Class RecipeDisplaySqueezer
java.lang.Object
java.lang.Record
org.cyclops.integrateddynamics.core.recipe.display.RecipeDisplaySqueezer
- All Implemented Interfaces:
net.minecraft.world.item.crafting.display.RecipeDisplay
public record RecipeDisplaySqueezer(net.minecraft.world.item.crafting.display.SlotDisplay inputIngredient, List<org.apache.commons.lang3.tuple.Pair<? extends net.minecraft.world.item.crafting.display.SlotDisplay,Float>> outputItems, net.neoforged.neoforge.fluids.FluidStack outputFluid, net.minecraft.world.item.crafting.display.SlotDisplay craftingStation, int duration)
extends Record
implements net.minecraft.world.item.crafting.display.RecipeDisplay
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.world.item.crafting.display.RecipeDisplay
net.minecraft.world.item.crafting.display.RecipeDisplay.Type<T extends net.minecraft.world.item.crafting.display.RecipeDisplay>
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec
<RecipeDisplaySqueezer> static final net.minecraft.network.codec.StreamCodec
<net.minecraft.network.RegistryFriendlyByteBuf, RecipeDisplaySqueezer> static final net.minecraft.world.item.crafting.display.RecipeDisplay.Type
<RecipeDisplaySqueezer> Fields inherited from interface net.minecraft.world.item.crafting.display.RecipeDisplay
CODEC
-
Constructor Summary
ConstructorsConstructorDescriptionRecipeDisplaySqueezer
(net.minecraft.world.item.crafting.display.SlotDisplay inputIngredient, List<org.apache.commons.lang3.tuple.Pair<? extends net.minecraft.world.item.crafting.display.SlotDisplay, Float>> outputItems, net.neoforged.neoforge.fluids.FluidStack outputFluid, net.minecraft.world.item.crafting.display.SlotDisplay craftingStation, int duration) Creates an instance of aRecipeDisplaySqueezer
record class. -
Method Summary
Modifier and TypeMethodDescriptionnet.minecraft.world.item.crafting.display.SlotDisplay
Returns the value of thecraftingStation
record component.int
duration()
Returns the value of theduration
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.net.minecraft.world.item.crafting.display.SlotDisplay
Returns the value of theinputIngredient
record component.boolean
isEnabled
(net.minecraft.world.flag.FeatureFlagSet featureFlagSet) net.neoforged.neoforge.fluids.FluidStack
Returns the value of theoutputFluid
record component.List
<org.apache.commons.lang3.tuple.Pair<? extends net.minecraft.world.item.crafting.display.SlotDisplay, Float>> Returns the value of theoutputItems
record component.net.minecraft.world.item.crafting.display.SlotDisplay
result()
final String
toString()
Returns a string representation of this record class.net.minecraft.world.item.crafting.display.RecipeDisplay.Type
<? extends net.minecraft.world.item.crafting.display.RecipeDisplay> type()
-
Field Details
-
MAP_CODEC
-
STREAM_CODEC
public static final net.minecraft.network.codec.StreamCodec<net.minecraft.network.RegistryFriendlyByteBuf,RecipeDisplaySqueezer> STREAM_CODEC -
TYPE
public static final net.minecraft.world.item.crafting.display.RecipeDisplay.Type<RecipeDisplaySqueezer> TYPE
-
-
Constructor Details
-
RecipeDisplaySqueezer
public RecipeDisplaySqueezer(net.minecraft.world.item.crafting.display.SlotDisplay inputIngredient, List<org.apache.commons.lang3.tuple.Pair<? extends net.minecraft.world.item.crafting.display.SlotDisplay, Float>> outputItems, net.neoforged.neoforge.fluids.FluidStack outputFluid, net.minecraft.world.item.crafting.display.SlotDisplay craftingStation, int duration) Creates an instance of aRecipeDisplaySqueezer
record class.- Parameters:
inputIngredient
- the value for theinputIngredient
record componentoutputItems
- the value for theoutputItems
record componentoutputFluid
- the value for theoutputFluid
record componentcraftingStation
- the value for thecraftingStation
record componentduration
- the value for theduration
record component
-
-
Method Details
-
result
public net.minecraft.world.item.crafting.display.SlotDisplay result()- Specified by:
result
in interfacenet.minecraft.world.item.crafting.display.RecipeDisplay
-
type
public net.minecraft.world.item.crafting.display.RecipeDisplay.Type<? extends net.minecraft.world.item.crafting.display.RecipeDisplay> type()- Specified by:
type
in interfacenet.minecraft.world.item.crafting.display.RecipeDisplay
-
isEnabled
public boolean isEnabled(net.minecraft.world.flag.FeatureFlagSet featureFlagSet) - Specified by:
isEnabled
in interfacenet.minecraft.world.item.crafting.display.RecipeDisplay
-
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 '=='. -
inputIngredient
public net.minecraft.world.item.crafting.display.SlotDisplay inputIngredient()Returns the value of theinputIngredient
record component.- Returns:
- the value of the
inputIngredient
record component
-
outputItems
public List<org.apache.commons.lang3.tuple.Pair<? extends net.minecraft.world.item.crafting.display.SlotDisplay,Float>> outputItems()Returns the value of theoutputItems
record component.- Returns:
- the value of the
outputItems
record component
-
outputFluid
public net.neoforged.neoforge.fluids.FluidStack outputFluid()Returns the value of theoutputFluid
record component.- Returns:
- the value of the
outputFluid
record component
-
craftingStation
public net.minecraft.world.item.crafting.display.SlotDisplay craftingStation()Returns the value of thecraftingStation
record component.- Specified by:
craftingStation
in interfacenet.minecraft.world.item.crafting.display.RecipeDisplay
- Returns:
- the value of the
craftingStation
record component
-
duration
public int duration()Returns the value of theduration
record component.- Returns:
- the value of the
duration
record component
-