Package editor.util

Class Pair<A,​B>


  • public class Pair<A,​B>
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) A _a  
      (package private) B _b  
    • Constructor Summary

      Constructors 
      Constructor Description
      Pair​(A a, B b)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      A getFirst()  
      B getSecond()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • _a

        A _a
      • _b

        B _b
    • Constructor Detail

      • Pair

        public Pair​(A a,
                    B b)
    • Method Detail

      • getFirst

        public A getFirst()
      • getSecond

        public B getSecond()