Class Pair<L,​R>


  • @Introspected
    public class Pair<L,​R>
    extends java.lang.Object
    Since:
    07.11.2020
    • Constructor Summary

      Constructors 
      Constructor Description
      Pair​(L left, R right)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      L getLeft()  
      R getRight()  
      boolean isEmpty()  
      • Methods inherited from class java.lang.Object

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

      • Pair

        public Pair​(L left,
                    R right)
    • Method Detail

      • isEmpty

        public boolean isEmpty()
      • getLeft

        public L getLeft()
      • getRight

        public R getRight()