Package net.minecraft.client.animation
Record Class KeyframeAnimation.Entry
java.lang.Object
java.lang.Record
net.minecraft.client.animation.KeyframeAnimation.Entry
- Enclosing class:
KeyframeAnimation
static record KeyframeAnimation.Entry(ModelPart part, AnimationChannel.Target target, Keyframe[] keyframes)
extends Record
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionEntry(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
Entry(ModelPart part, AnimationChannel.Target target, Keyframe[] keyframes) 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
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). -
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
-