Class Triple<F,​S,​T>

    • Field Detail

      • first

        protected F first
      • second

        protected S second
      • third

        protected T third
    • Constructor Detail

      • Triple

        public Triple()
    • Method Detail

      • getLeft

        public F getLeft()
      • getMiddle

        public S getMiddle()
      • getRight

        public T getRight()
      • tripleOf

        public static <F,​S,​T> Triple<F,​S,​T> tripleOf​(F first,
                                                                             S second,
                                                                             T third)
      • of

        public static <F,​S,​T> Triple<F,​S,​T> of​(F first,
                                                                       S second,
                                                                       T third)