Package net.minecraft.recipe
Record Class RawShapedRecipe.Data
java.lang.Object
java.lang.Record
net.minecraft.recipe.RawShapedRecipe.Data
- Record Components:
- key-
- pattern-
- Enclosing class:
- RawShapedRecipe
public static record RawShapedRecipe.Data(Map<Character,Ingredient> key, List<String> pattern)
extends Record 
- Mappings:
- Namespace - Name - named - net/minecraft/recipe/RawShapedRecipe$Data- intermediary - net/minecraft/class_8957$class_8958- official - dbu$a- named - key- intermediary - comp_2085- official - b- named - pattern- intermediary - comp_2086- official - c
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec<RawShapedRecipe.Data> private final Map<Character, Ingredient> The field for thekeyrecord component.private static final com.mojang.serialization.Codec<Character> The field for thepatternrecord component.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.key()Returns the value of thekeyrecord component.pattern()Returns the value of thepatternrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
keyThe field for thekeyrecord component.
- 
patternThe field for thepatternrecord component.
- 
PATTERN_CODEC- Mappings:
- Namespace - Name - Mixin selector - named - PATTERN_CODEC- Lnet/minecraft/recipe/RawShapedRecipe$Data;PATTERN_CODEC:Lcom/mojang/serialization/Codec;- intermediary - field_47324- Lnet/minecraft/class_8957$class_8958;field_47324:Lcom/mojang/serialization/Codec;- official - d- Ldbu$a;d:Lcom/mojang/serialization/Codec;
 
- 
KEY_ENTRY_CODEC- Mappings:
- Namespace - Name - Mixin selector - named - KEY_ENTRY_CODEC- Lnet/minecraft/recipe/RawShapedRecipe$Data;KEY_ENTRY_CODEC:Lcom/mojang/serialization/Codec;- intermediary - field_47325- Lnet/minecraft/class_8957$class_8958;field_47325:Lcom/mojang/serialization/Codec;- official - e- Ldbu$a;e:Lcom/mojang/serialization/Codec;
 
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/recipe/RawShapedRecipe$Data;CODEC:Lcom/mojang/serialization/MapCodec;- intermediary - field_47323- Lnet/minecraft/class_8957$class_8958;field_47323:Lcom/mojang/serialization/MapCodec;- official - a- Ldbu$a;a:Lcom/mojang/serialization/MapCodec;
 
 
- 
- 
Constructor Details- 
Data
 
- 
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
keyReturns the value of thekeyrecord component.- Returns:
- the value of the keyrecord component
 
- 
patternReturns the value of thepatternrecord component.- Returns:
- the value of the patternrecord component
 
 
-