Package net.minecraft.entity.decoration
Record Class DisplayEntity.ArgbLerper
java.lang.Object
java.lang.Record
net.minecraft.entity.decoration.DisplayEntity.ArgbLerper
- Record Components:
- previous-
- current-
- All Implemented Interfaces:
- DisplayEntity.IntLerper
- Enclosing class:
- DisplayEntity
private static record DisplayEntity.ArgbLerper(int previous, int current)
extends Record
implements DisplayEntity.IntLerper
- Mappings:
- Namespace - Name - official - bfi$c- intermediary - net/minecraft/class_8113$class_8116- named - net/minecraft/entity/decoration/DisplayEntity$ArgbLerper- official - a- intermediary - comp_1320- named - previous- official - b- intermediary - comp_1321- named - current
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionintcurrent()Returns the value of thecurrentrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intlerp(float delta) intprevious()Returns the value of thepreviousrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details
- 
Constructor Details- 
ArgbLerperArgbLerper(int int2, int int3) 
 
- 
- 
Method Details- 
lerppublic int lerp(float delta) - Specified by:
- lerpin interface- DisplayEntity.IntLerper
- Mappings:
- Namespace - Name - Mixin selector - official - get- Lbfi$f;get(F)I- intermediary - method_48889- Lnet/minecraft/class_8113$class_8119;method_48889(F)I- named - lerp- Lnet/minecraft/entity/decoration/DisplayEntity$IntLerper;lerp(F)I
 
- 
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. All components in this record class are compared with '=='.
- 
previouspublic int previous()Returns the value of thepreviousrecord component.- Returns:
- the value of the previousrecord component
 
- 
currentpublic int current()Returns the value of thecurrentrecord component.- Returns:
- the value of the currentrecord component
 
 
-