Class Triple<L,​M,​R>

  • Type Parameters:
    L - the left element type
    M - the middle element type
    R - the right element type

    public class Triple<L,​M,​R>
    extends java.lang.Object
    A triple consisting of three elements.
    • Constructor Summary

      Constructors 
      Constructor Description
      Triple​(L left, M middle, R right)  
    • Constructor Detail

      • Triple

        public Triple​(L left,
                      M middle,
                      R right)
    • Method Detail

      • getLeft

        public L getLeft()
      • getMiddle

        public M getMiddle()
      • getRight

        public R getRight()