Class IntervalRTreeNode
- java.lang.Object
-
- org.meteoinfo.jts.index.intervalrtree.IntervalRTreeNode
-
- Direct Known Subclasses:
IntervalRTreeBranchNode,IntervalRTreeLeafNode
public abstract class IntervalRTreeNode extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classIntervalRTreeNode.NodeComparator
-
Constructor Summary
Constructors Constructor Description IntervalRTreeNode()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description doublegetMax()doublegetMin()protected booleanintersects(double queryMin, double queryMax)abstract voidquery(double queryMin, double queryMax, ItemVisitor visitor)java.lang.StringtoString()
-
-
-
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:
toStringin classjava.lang.Object
-
-