Record Class ShellElement

java.lang.Object
java.lang.Record
foundry.veil.api.flare.data.model.ShellElement

public record ShellElement(org.joml.Vector3fc from, org.joml.Vector3fc to, @Nullable ShellElementRotation rotation, Map<net.minecraft.core.Direction,ShellElementFace> faces) extends Record
Since:
2.5.0
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final com.mojang.serialization.Codec<ShellElement>
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    ShellElement(org.joml.Vector3fc from, org.joml.Vector3fc to, @Nullable ShellElementRotation rotation, Map<net.minecraft.core.Direction,ShellElementFace> faces)
    Creates an instance of a ShellElement record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    final boolean
    Indicates whether some other object is "equal to" this one.
    Map<net.minecraft.core.Direction,ShellElementFace>
    Returns the value of the faces record component.
    org.joml.Vector3fc
    Returns the value of the from record component.
    final int
    Returns a hash code value for this object.
    Returns the value of the rotation record component.
    org.joml.Vector3fc
    to()
    Returns the value of the to record component.
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • CODEC

      public static final com.mojang.serialization.Codec<ShellElement> CODEC
  • Constructor Details

    • ShellElement

      public ShellElement(org.joml.Vector3fc from, org.joml.Vector3fc to, @Nullable @Nullable ShellElementRotation rotation, Map<net.minecraft.core.Direction,ShellElementFace> faces)
      Creates an instance of a ShellElement record class.
      Parameters:
      from - the value for the from record component
      to - the value for the to record component
      rotation - the value for the rotation record component
      faces - the value for the faces record component
  • Method Details

    • 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.
    • from

      public org.joml.Vector3fc from()
      Returns the value of the from record component.
      Returns:
      the value of the from record component
    • to

      public org.joml.Vector3fc to()
      Returns the value of the to record component.
      Returns:
      the value of the to record component
    • rotation

      @Nullable public @Nullable ShellElementRotation rotation()
      Returns the value of the rotation record component.
      Returns:
      the value of the rotation record component
    • faces

      public Map<net.minecraft.core.Direction,ShellElementFace> faces()
      Returns the value of the faces record component.
      Returns:
      the value of the faces record component