Class Triple<T>

  • All Implemented Interfaces:
    java.lang.Iterable<T>

    public class Triple<T>
    extends Tuple3<T,​T,​T>
    implements java.lang.Iterable<T>
    • Field Summary

      • Fields inherited from class org.processmining.specpp.datastructures.util.Tuple3

        t1, t2, t3
    • Constructor Summary

      Constructors 
      Constructor Description
      Triple​(T t, T t2, T t3)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      T first()  
      java.util.Iterator<T> iterator()  
      T second()  
      T third()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.lang.Iterable

        forEach, spliterator
    • Constructor Detail

      • Triple

        public Triple​(T t,
                      T t2,
                      T t3)
    • Method Detail

      • first

        public T first()
      • second

        public T second()
      • third

        public T third()
      • iterator

        public java.util.Iterator<T> iterator()
        Specified by:
        iterator in interface java.lang.Iterable<T>