Record Class ModelBaker.BakedModels
java.lang.Object
java.lang.Record
net.minecraft.client.render.model.ModelBaker.BakedModels
- Record Components:
- missingModel-
- blockStateModels-
- missingItemModel-
- itemStackModels-
- itemProperties-
- Enclosing class:
- ModelBaker
@Environment(CLIENT)
public static record ModelBaker.BakedModels(BakedModel missingModel, Map<ModelIdentifier,BakedModel> blockStateModels, ItemModel missingItemModel, Map<Identifier,ItemModel> itemStackModels, Map<Identifier,ItemAsset.Properties> itemProperties)
extends Record   
- Mappings:
- Namespace - Name - named - net/minecraft/client/render/model/ModelBaker$BakedModels- intermediary - net/minecraft/class_1088$class_10524- official - hhd$b- named - missingModel- intermediary - comp_3429- official - a- named - blockStateModels- intermediary - comp_3430- official - b- named - missingItemModel- intermediary - comp_3431- official - c- named - itemStackModels- intermediary - comp_3432- official - d- named - itemProperties- intermediary - comp_3472- official - e
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final Map<ModelIdentifier, BakedModel> The field for theblockStateModelsrecord component.private final Map<Identifier, ItemAsset.Properties> The field for theitemPropertiesrecord component.private final Map<Identifier, ItemModel> The field for theitemStackModelsrecord component.private final ItemModelThe field for themissingItemModelrecord component.private final BakedModelThe field for themissingModelrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionBakedModels(BakedModel bakedModel, Map<ModelIdentifier, BakedModel> map, ItemModel itemModel, Map<Identifier, ItemModel> map2, Map<Identifier, ItemAsset.Properties> map3) 
- 
Method SummaryModifier and TypeMethodDescriptionReturns the value of theblockStateModelsrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theitemPropertiesrecord component.Returns the value of theitemStackModelsrecord component.Returns the value of themissingItemModelrecord component.Returns the value of themissingModelrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
missingModelThe field for themissingModelrecord component.
- 
blockStateModelsThe field for theblockStateModelsrecord component.
- 
missingItemModelThe field for themissingItemModelrecord component.
- 
itemStackModelsThe field for theitemStackModelsrecord component.
- 
itemPropertiesThe field for theitemPropertiesrecord component.
 
- 
- 
Constructor Details- 
BakedModelspublic BakedModels(BakedModel bakedModel, Map<ModelIdentifier, BakedModel> map, ItemModel itemModel, Map<Identifier, ItemModel> map2, Map<Identifier, ItemAsset.Properties> map3) 
 
- 
- 
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).
- 
missingModelReturns the value of themissingModelrecord component.- Returns:
- the value of the missingModelrecord component
 
- 
blockStateModelsReturns the value of theblockStateModelsrecord component.- Returns:
- the value of the blockStateModelsrecord component
 
- 
missingItemModelReturns the value of themissingItemModelrecord component.- Returns:
- the value of the missingItemModelrecord component
 
- 
itemStackModelsReturns the value of theitemStackModelsrecord component.- Returns:
- the value of the itemStackModelsrecord component
 
- 
itemPropertiesReturns the value of theitemPropertiesrecord component.- Returns:
- the value of the itemPropertiesrecord component
 
 
-