Record Class Triplet<T>

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

public record Triplet<T>(T x, T y, T z) extends Record
A triplet of the same type objects.
Since:
0.1.0
Author:
squid233
  • Nested Class Summary Link icon

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

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

    Modifier and Type
    Method
    Description
    final boolean
    Indicates whether some other object is "equal to" this one.
    Returns x.
    final int
    Returns a hash code value for this object.
    Returns x.
    Returns y.
    Returns z.
    Returns y.
    Returns z.
    final String
    Returns a string representation of this record class.
    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 Link icon

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

    • Triplet Link icon

      public Triplet(T x, T y, T z)
      Creates an instance of a Triplet 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
  • Method Details Link icon

    • first Link icon

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

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

      public T third()
      Returns z.
      Returns:
      z
    • left Link icon

      public T left()
      Returns x.
      Returns:
      x
    • middle Link icon

      public T middle()
      Returns y.
      Returns:
      y
    • right Link icon

      public T right()
      Returns z.
      Returns:
      z
    • toString Link icon

      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 Link icon

      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 Link icon

      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 Link icon

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

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

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