Class ComposedKey<F,​S>

java.lang.Object
kieker.model.analysismodel.util.ComposedKey<F,​S>
Type Parameters:
F - First element's type
S - Second elements type

public final class ComposedKey<F,​S>
extends java.lang.Object
Class representing a key (e.g., for a Map) that consists of three elements. Please note that there is a similar class in execution generated via genmodel which is only usable inside an EMF model.
Since:
1.14
Author:
Sören Henning
  • Method Summary

    Modifier and Type Method Description
    static boolean equalOrBothNull​(java.lang.Object a, java.lang.Object b)  
    boolean equals​(java.lang.Object o)  
    int hashCode()  
    static <F,​ S> ComposedKey<F,​S> of​(F first, S second)  

    Methods inherited from class java.lang.Object

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

    • equals

      public boolean equals​(java.lang.Object o)
      Overrides:
      equals in class java.lang.Object
    • equalOrBothNull

      public static boolean equalOrBothNull​(java.lang.Object a, java.lang.Object b)
    • hashCode

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

      public static <F,​ S> ComposedKey<F,​S> of​(F first, S second)