Class IntervalRTreeNode

    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected double max  
      protected double min  
    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      double getMax​()  
      double getMin​()  
      protected boolean intersects​(double queryMin, double queryMax)  
      abstract void query​(double queryMin, double queryMax, ItemVisitor visitor)  
      java.lang.String toString​()  
      • Methods inherited from class java.lang.Object

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

      • min

        protected double min
      • max

        protected double max
    • Constructor Detail

      • IntervalRTreeNode

        public IntervalRTreeNode​()
    • Method Detail

      • getMin

        public double getMin​()
      • getMax

        public double getMax​()
      • query

        public abstract void query​(double queryMin,
                                   double queryMax,
                                   ItemVisitor visitor)
      • intersects

        protected boolean intersects​(double queryMin,
                                     double queryMax)
      • toString

        public java.lang.String toString​()
        Overrides:
        toString in class java.lang.Object