Package org.tinspin.index
Interface RectangleEntry<T>
-
- Type Parameters:
T- Value type
- All Known Subinterfaces:
RectangleEntryDist<T>
- All Known Implementing Classes:
DistEntry,DistEntryR,Entry,EntryR,QREntry,QREntry,QREntryDist,QREntryDist
public interface RectangleEntry<T>This represents a rectangle entry.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double[]lower()double[]upper()Tvalue()
-
-
-
Method Detail
-
lower
double[] lower()
- Returns:
- The lower left corner of the entry.
-
upper
double[] upper()
- Returns:
- The upper right corner of the entry.
-
value
T value()
- Returns:
- The value associated with the rectangle or point.
-
-