Record Class ShapedRecipePattern
java.lang.Object
java.lang.Record
net.minecraft.world.item.crafting.ShapedRecipePattern
public record ShapedRecipePattern(int width, int height, NonNullList<Ingredient> ingredients, Optional<ShapedRecipePattern.Data> data)
extends Record
-
Nested Class Summary
-
Field Summary
Modifier and TypeFieldDescriptionprivate final Optional<ShapedRecipePattern.Data>
The field for thedata
record component.private final int
The field for theheight
record component.private final NonNullList<Ingredient>
The field for theingredients
record component.static final com.mojang.serialization.MapCodec<ShapedRecipePattern>
private static final int
private final int
The field for thewidth
record component. -
Constructor Summary
ConstructorDescriptionShapedRecipePattern
(int width, int height, NonNullList<Ingredient> ingredients, Optional<ShapedRecipePattern.Data> data) Creates an instance of aShapedRecipePattern
record class. -
Method Summary
Modifier and TypeMethodDescriptiondata()
Returns the value of thedata
record component.final boolean
Indicates whether some other object is "equal to" this one.private static int
firstNonSpace
(String p_309836_) static ShapedRecipePattern
fromNetwork
(FriendlyByteBuf p_310753_) final int
hashCode()
Returns a hash code value for this object.int
height()
Returns the value of theheight
record component.Returns the value of theingredients
record component.private static int
lastNonSpace
(String p_312853_) boolean
matches
(CraftingContainer p_310690_) private boolean
matches
(CraftingContainer p_313091_, int p_311269_, int p_310676_, boolean p_313153_) static ShapedRecipePattern
of
(Map<Character, Ingredient> p_310983_, String... p_310430_) static ShapedRecipePattern
(package private) static String[]
void
toNetwork
(FriendlyByteBuf p_312386_) final String
toString()
Returns a string representation of this record class.private static com.mojang.serialization.DataResult<ShapedRecipePattern>
unpack
(ShapedRecipePattern.Data p_312333_) int
width()
Returns the value of thewidth
record component.
-
Field Details
-
width
private final int widthThe field for thewidth
record component. -
height
private final int heightThe field for theheight
record component. -
ingredients
The field for theingredients
record component. -
data
The field for thedata
record component. -
MAX_SIZE
private static final int MAX_SIZE- See Also:
-
MAP_CODEC
-
-
Constructor Details
-
ShapedRecipePattern
public ShapedRecipePattern(int width, int height, NonNullList<Ingredient> ingredients, Optional<ShapedRecipePattern.Data> data) Creates an instance of aShapedRecipePattern
record class.- Parameters:
width
- the value for thewidth
record componentheight
- the value for theheight
record componentingredients
- the value for theingredients
record componentdata
- the value for thedata
record component
-
-
Method Details
-
of
-
of
-
unpack
private static com.mojang.serialization.DataResult<ShapedRecipePattern> unpack(ShapedRecipePattern.Data p_312333_) -
shrink
-
firstNonSpace
-
lastNonSpace
-
matches
-
matches
private boolean matches(CraftingContainer p_313091_, int p_311269_, int p_310676_, boolean p_313153_) -
toNetwork
-
fromNetwork
-
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 '=='. -
width
public int width()Returns the value of thewidth
record component.- Returns:
- the value of the
width
record component
-
height
public int height()Returns the value of theheight
record component.- Returns:
- the value of the
height
record component
-
ingredients
Returns the value of theingredients
record component.- Returns:
- the value of the
ingredients
record component
-
data
Returns the value of thedata
record component.- Returns:
- the value of the
data
record component
-