Record Class KeyframeAnimation.Entry
java.lang.Object
java.lang.Record
net.minecraft.client.animation.KeyframeAnimation.Entry
- Enclosing class:
KeyframeAnimation
private static record KeyframeAnimation.Entry(ModelPart part, AnimationChannel.Target target, Keyframe[] keyframes)
extends Record
-
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateEntry(ModelPart part, AnimationChannel.Target target, Keyframe[] keyframes) Creates an instance of aEntryrecord class. -
Method Summary
Modifier and TypeMethodDescriptionvoidfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Keyframe[]Returns the value of thekeyframesrecord component.part()Returns the value of thepartrecord component.target()Returns the value of thetargetrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
part
The field for thepartrecord component. -
target
The field for thetargetrecord component. -
keyframes
The field for thekeyframesrecord component.
-
-
Constructor Details
-
Entry
Creates an instance of aEntryrecord class.- Parameters:
part- the value for thepartrecord componenttarget- the value for thetargetrecord componentkeyframes- the value for thekeyframesrecord component
-
-
Method Details
-
apply
-
toString
-
hashCode
-
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). -
part
Returns the value of thepartrecord component.- Returns:
- the value of the
partrecord component
-
target
Returns the value of thetargetrecord component.- Returns:
- the value of the
targetrecord component
-
keyframes
Returns the value of thekeyframesrecord component.- Returns:
- the value of the
keyframesrecord component
-