Package net.minecraft.util
Record Class Keyframe<T>
java.lang.Object
java.lang.Record
net.minecraft.util.Keyframe<T>
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic <T> com.mojang.serialization.Codec<Keyframe<T>> codec(com.mojang.serialization.Codec<T> pValueCodec) 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.
-
Field Details
-
ticks
private final int ticksThe field for theticksrecord component. -
value
The field for 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
public static <T> com.mojang.serialization.Codec<Keyframe<T>> codec(com.mojang.serialization.Codec<T> pValueCodec) -
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
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
-