Record Class BlockStatesLoader.BlockStateDefinition
java.lang.Object
java.lang.Record
net.minecraft.client.render.model.BlockStatesLoader.BlockStateDefinition
- Record Components:
models-
- Enclosing class:
BlockStatesLoader
@Environment(CLIENT)
public static record BlockStatesLoader.BlockStateDefinition(Map<ModelIdentifier,BlockStatesLoader.BlockModel> models)
extends Record
- Mappings:
Namespace Name named net/minecraft/client/render/model/BlockStatesLoader$BlockStateDefinitionintermediary net/minecraft/class_9824$class_10095official hgv$cnamed modelsintermediary comp_3063official a
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Map<ModelIdentifier, BlockStatesLoader.BlockModel> The field for themodelsrecord component. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.models()Returns the value of themodelsrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
models
The field for themodelsrecord component.
-
-
Constructor Details
-
BlockStateDefinition
-
-
Method Details
-
streamModels
- Mappings:
Namespace Name Mixin selector named streamModelsLnet/minecraft/client/render/model/BlockStatesLoader$BlockStateDefinition;streamModels()Ljava/util/stream/Stream;intermediary method_65722Lnet/minecraft/class_9824$class_10095;method_65722()Ljava/util/stream/Stream;official aLhgv$c;a()Ljava/util/stream/Stream;
-
getModels
- Mappings:
Namespace Name Mixin selector named getModelsLnet/minecraft/client/render/model/BlockStatesLoader$BlockStateDefinition;getModels()Ljava/util/Map;intermediary method_65723Lnet/minecraft/class_9824$class_10095;method_65723()Ljava/util/Map;official bLhgv$c;b()Ljava/util/Map;
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
models
Returns the value of themodelsrecord component.- Returns:
- the value of the
modelsrecord component
-