Class Pair<T>


  • public class Pair<T>
    extends Object
    A collection of two items. Used for pairs of lists during R*-Tree split
    Author:
    Tom Nelson
    • Field Detail

      • left

        public final T left
      • right

        public final T right
    • Constructor Detail

      • Pair

        public Pair​(T left,
                    T right)
    • Method Detail

      • of

        public static <T> Pair<T> of​(T left,
                                     T right)