Class Tuple<F,​S>

java.lang.Object
kieker.analysis.util.Tuple<F,​S>
Type Parameters:
F - first tuple element type
S - second tuple element type

public class Tuple<F,​S>
extends java.lang.Object
Plain Java tuple class. Usable as key value in maps which are composed of multiple entries.
Since:
1.15
Author:
Reiner Jung
  • Constructor Summary

    Constructors 
    Constructor Description
    Tuple​(F first, S second)  
  • Method Summary

    Modifier and Type Method Description
    boolean equals​(java.lang.Object value)  
    F getFirst()  
    S getSecond()  
    int hashCode()  

    Methods inherited from class java.lang.Object

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

    • Tuple

      public Tuple​(F first, S second)
  • Method Details

    • getFirst

      public F getFirst()
    • getSecond

      public S getSecond()
    • equals

      public boolean equals​(java.lang.Object value)
      Overrides:
      equals in class java.lang.Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class java.lang.Object