Record Class Quad<T>

java.lang.Object
java.lang.Record
overrungl.util.value.Quad<T>
Type Parameters:
T - the type.
Record Components:
x - the first value.
y - the second value.
z - the third value.
w - the fourth value.

public record Quad<T>(T x, T y, T z, T w) extends Record
A quad of thsame type objects.
Since:
0.1.0
Author:
squid233
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static final record 
    A quad of doubles.
    static final record 
    A quad of floats.
    static final record 
    A quad of integers.
    static final record 
    A quad of longs.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Quad(T x, T y, T z, T w)
    Creates an instance of a Quad record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    final boolean
    Indicates whether some other object is "equal to" this one.
    Returns x.
    Returns w.
    final int
    Returns a hash code value for this object.
    Returns y.
    Returns z.
    final String
    Returns a string representation of this record class.
    w()
    Returns the value of the w record component.
    x()
    Returns the value of the x record component.
    y()
    Returns the value of the y record component.
    z()
    Returns the value of the z record component.

    Methods inherited from class java.lang.Object

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

    • Quad

      public Quad(T x, T y, T z, T w)
      Creates an instance of a Quad record class.
      Parameters:
      x - the value for the x record component
      y - the value for the y record component
      z - the value for the z record component
      w - the value for the w record component
  • Method Details

    • first

      public T first()
      Returns x.
      Returns:
      x
    • second

      public T second()
      Returns y.
      Returns:
      y
    • third

      public T third()
      Returns z.
      Returns:
      z
    • fourth

      public T fourth()
      Returns w.
      Returns:
      w
    • 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.
    • x

      public T x()
      Returns the value of the x record component.
      Returns:
      the value of the x record component
    • y

      public T y()
      Returns the value of the y record component.
      Returns:
      the value of the y record component
    • z

      public T z()
      Returns the value of the z record component.
      Returns:
      the value of the z record component
    • w

      public T w()
      Returns the value of the w record component.
      Returns:
      the value of the w record component