Class MutablePair<T>

    • Constructor Summary

      Constructors 
      Constructor Description
      MutablePair()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      T first()  
      java.util.Iterator<T> iterator()  
      T second()  
      • 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
      • Methods inherited from interface org.processmining.specpp.datastructures.util.Tuple2

        getT1, getT2
    • Constructor Detail

      • MutablePair

        public MutablePair()
    • Method Detail

      • first

        public T first()
        Specified by:
        first in interface Pair<T>
      • second

        public T second()
        Specified by:
        second in interface Pair<T>
      • iterator

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