Record Class Skeleton
java.lang.Object
java.lang.Record
com.pixelmonmod.pixelmon.client.render.entity.renderers.smd.model.Skeleton
public record Skeleton(short boneId, float x, float y, float z, float rotx, float roty, float rotz)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionSkeleton(short boneId, float x, float y, float z, float rotx, float roty, float rotz) Creates an instance of aSkeletonrecord class. -
Method Summary
Modifier and TypeMethodDescriptionshortboneId()Returns the value of theboneIdrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.static Skeletonfloatrotx()Returns the value of therotxrecord component.floatroty()Returns the value of therotyrecord component.floatrotz()Returns the value of therotzrecord component.final StringtoString()Returns a string representation of this record class.floatx()Returns the value of thexrecord component.floaty()Returns the value of theyrecord component.floatz()Returns the value of thezrecord component.
-
Constructor Details
-
Skeleton
public Skeleton(short boneId, float x, float y, float z, float rotx, float roty, float rotz) Creates an instance of aSkeletonrecord class.- Parameters:
boneId- the value for theboneIdrecord componentx- the value for thexrecord componenty- the value for theyrecord componentz- the value for thezrecord componentrotx- the value for therotxrecord componentroty- the value for therotyrecord componentrotz- the value for therotzrecord component
-
-
Method Details
-
read
- Throws:
IOException
-
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 with '=='. -
boneId
public short boneId()Returns the value of theboneIdrecord component.- Returns:
- the value of the
boneIdrecord component
-
x
public float x()Returns the value of thexrecord component.- Returns:
- the value of the
xrecord component
-
y
public float y()Returns the value of theyrecord component.- Returns:
- the value of the
yrecord component
-
z
public float z()Returns the value of thezrecord component.- Returns:
- the value of the
zrecord component
-
rotx
public float rotx()Returns the value of therotxrecord component.- Returns:
- the value of the
rotxrecord component
-
roty
public float roty()Returns the value of therotyrecord component.- Returns:
- the value of the
rotyrecord component
-
rotz
public float rotz()Returns the value of therotzrecord component.- Returns:
- the value of the
rotzrecord component
-