Record Class Selector.Transformation.Components

java.lang.Object
java.lang.Record
com.github.darksoulq.abyssallib.server.resource.asset.definition.Selector.Transformation.Components
All Implemented Interfaces:
Selector.Transformation
Enclosing interface:
Selector.Transformation

public static record Selector.Transformation.Components(@Nullable org.joml.Vector3f translation, @Nullable org.joml.Vector3f scale, @Nullable org.joml.Quaternionf leftRotation, @Nullable org.joml.Quaternionf rightRotation) extends Record implements Selector.Transformation
  • Nested Class Summary

  • Constructor Summary

    Constructors
    Constructor
    Description
    Components(org.joml.Vector3f translation, org.joml.Vector3f scale, org.joml.Quaternionf leftRotation, org.joml.Quaternionf rightRotation)
    Creates an instance of a Components record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    org.joml.Quaternionf
    Returns the value of the leftRotation record component.
    org.joml.Quaternionf
    Returns the value of the rightRotation record component.
    org.joml.Vector3f
    Returns the value of the scale record component.
     
    final String
    Returns a string representation of this record class.
    org.joml.Vector3f
    Returns the value of the translation record component.

    Methods inherited from class Object

    getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • Components

      public Components(@Nullable org.joml.Vector3f translation, @Nullable org.joml.Vector3f scale, @Nullable org.joml.Quaternionf leftRotation, @Nullable org.joml.Quaternionf rightRotation)
      Creates an instance of a Components record class.
      Parameters:
      translation - the value for the translation record component
      scale - the value for the scale record component
      leftRotation - the value for the leftRotation record component
      rightRotation - the value for the rightRotation record component
  • Method Details

    • toJson

      public Object toJson()
      Specified by:
      toJson in interface Selector.Transformation
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • translation

      @Nullable public org.joml.Vector3f translation()
      Returns the value of the translation record component.
      Returns:
      the value of the translation record component
    • scale

      @Nullable public org.joml.Vector3f scale()
      Returns the value of the scale record component.
      Returns:
      the value of the scale record component
    • leftRotation

      @Nullable public org.joml.Quaternionf leftRotation()
      Returns the value of the leftRotation record component.
      Returns:
      the value of the leftRotation record component
    • rightRotation

      @Nullable public org.joml.Quaternionf rightRotation()
      Returns the value of the rightRotation record component.
      Returns:
      the value of the rightRotation record component