Record Class Timeline.Keyframe<T>
java.lang.Object
java.lang.Record
net.minestom.server.world.timeline.Timeline.Keyframe<T>
- Enclosing interface:
Timeline
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic <T> Codec<Timeline.Keyframe<T>> final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intticks()Returns the value of theticksrecord component.final StringtoString()Returns a string representation of this record class.value()Returns the value of thevaluerecord component.
-
Constructor Details
-
Keyframe
Creates an instance of aKeyframerecord class.- Parameters:
ticks- the value for theticksrecord componentvalue- the value for thevaluerecord component
-
-
Method Details
-
codec
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
ticks
public int ticks()Returns the value of theticksrecord component.- Returns:
- the value of the
ticksrecord component
-
value
Returns the value of thevaluerecord component.- Returns:
- the value of the
valuerecord component
-