Klasse Triple

java.lang.Object
org.opentcs.data.model.Triple
Alle implementierten Schnittstellen:
Serializable

public class Triple extends Object implements Serializable
A generic 3-tuple of long integer values, usable for 3D coordinates and vectors, for instance.
Siehe auch:
  • Konstruktorübersicht

    Konstruktoren
    Konstruktor
    Beschreibung
    Triple(long x, long y, long z)
    Creates a new Triple with the given values.
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    boolean
     
    long
    Returns the x coordinate.
    long
    Returns the y coordinate.
    long
    Returns the z coordinate.
    int
     
     

    Von Klasse geerbte Methoden java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Konstruktordetails

    • Triple

      public Triple(long x, long y, long z)
      Creates a new Triple with the given values.
      Parameter:
      x - The X coordinate.
      y - The Y coordinate.
      z - The Z coordindate.
  • Methodendetails

    • getX

      public long getX()
      Returns the x coordinate.
      Gibt zurück:
      x
    • getY

      public long getY()
      Returns the y coordinate.
      Gibt zurück:
      y
    • getZ

      public long getZ()
      Returns the z coordinate.
      Gibt zurück:
      z
    • equals

      public boolean equals(Object obj)
      Setzt außer Kraft:
      equals in Klasse Object
    • hashCode

      public int hashCode()
      Setzt außer Kraft:
      hashCode in Klasse Object
    • toString

      public String toString()
      Setzt außer Kraft:
      toString in Klasse Object