Record Class ModelBakery.BakedCacheKey
java.lang.Object
java.lang.Record
net.minecraft.client.resources.model.ModelBakery.BakedCacheKey
- Enclosing class:
- ModelBakery
static record ModelBakery.BakedCacheKey(ResourceLocation id, Transformation transformation, boolean isUvLocked)
extends Record
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final ResourceLocationThe field for theidrecord component.private final booleanThe field for theisUvLockedrecord component.private final TransformationThe field for thetransformationrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionBakedCacheKey(ResourceLocation id, Transformation transformation, boolean isUvLocked) Creates an instance of aBakedCacheKeyrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.id()Returns the value of theidrecord component.booleanReturns the value of theisUvLockedrecord component.final StringtoString()Returns a string representation of this record class.Returns the value of thetransformationrecord component.
- 
Field Details- 
idThe field for theidrecord component.
- 
transformationThe field for thetransformationrecord component.
- 
isUvLockedprivate final boolean isUvLockedThe field for theisUvLockedrecord component.
 
- 
- 
Constructor Details- 
BakedCacheKeyBakedCacheKey(ResourceLocation id, Transformation transformation, boolean isUvLocked) Creates an instance of aBakedCacheKeyrecord class.- Parameters:
- id- the value for the- idrecord component
- transformation- the value for the- transformationrecord component
- isUvLocked- the value for the- isUvLockedrecord component
 
 
- 
- 
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='.
- 
idReturns the value of theidrecord component.- Returns:
- the value of the idrecord component
 
- 
transformationReturns the value of thetransformationrecord component.- Returns:
- the value of the transformationrecord component
 
- 
isUvLockedpublic boolean isUvLocked()Returns the value of theisUvLockedrecord component.- Returns:
- the value of the isUvLockedrecord component
 
 
-