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, GroupableModel model)
extends Record
- Mappings:
- Namespace - Name - named - net/minecraft/client/render/model/BlockStatesLoader$BlockModel- intermediary - net/minecraft/class_9824$class_9825- official - hgv$b- named - state- intermediary - comp_3062- official - a- named - model- intermediary - comp_2871- official - b
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final GroupableModelThe field for themodelrecord component.private final BlockStateThe field for thestaterecord 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.model()Returns the value of themodelrecord component.state()Returns the value of thestaterecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details
- 
Constructor Details- 
BlockModel
 
- 
- 
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).
- 
stateReturns the value of thestaterecord component.- Returns:
- the value of the staterecord component
 
- 
modelReturns the value of themodelrecord component.- Returns:
- the value of the modelrecord component
 
 
-