Record Class BlockStatesLoader.BlockModel
java.lang.Object
java.lang.Record
net.minecraft.client.render.model.BlockStatesLoader.BlockModel
- Record Components:
state
-model
-
- Enclosing class:
BlockStatesLoader
@Environment(CLIENT)
public static record BlockStatesLoader.BlockModel(BlockState state, UnbakedModel model)
extends Record
- Mappings:
Namespace Name named net/minecraft/client/render/model/BlockStatesLoader$BlockModel
intermediary net/minecraft/class_9824$class_9825
official hdo$b
named state
intermediary comp_3062
official a
named model
intermediary comp_2871
official b
-
Field Summary
Modifier and TypeFieldDescriptionprivate final UnbakedModel
The field for themodel
record component.private final BlockState
The field for thestate
record component. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.model()
Returns the value of themodel
record component.state()
Returns the value of thestate
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
Constructor Details
-
BlockModel
-
-
Method Details
-
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)
. -
state
Returns the value of thestate
record component.- Returns:
- the value of the
state
record component
-
model
Returns the value of themodel
record component.- Returns:
- the value of the
model
record component
-