Interface Boundable

 1  
 2 /*
 3  * Copyright (c) 2016 Vivid Solutions.
 4  *
 5  * All rights reserved. This program and the accompanying materials
 6  * are made available under the terms of the Eclipse Public License 2.0
 7  * and Eclipse Distribution License v. 1.0 which accompanies this distribution.
 8  * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v20.html
 9  * and the Eclipse Distribution License is available at
10  *
11  * http://www.eclipse.org/org/documents/edl-v10.php.
12  */
13 package org.locationtech.jts.index.strtree;
14  
15 /**
16  * A spatial object in an AbstractSTRtree.
17  *
18  * @version 1.7
19  */
20 public interface Boundable {
21   /**
22    * Returns a representation of space that encloses this Boundable, preferably
23    * not much bigger than this Boundable's boundary yet fast to test for intersection
24    * with the bounds of other Boundables. The class of object returned depends
25    * on the subclass of AbstractSTRtree.
26    * @return an Envelope (for STRtrees), an Interval (for SIRtrees), or other object
27    * (for other subclasses of AbstractSTRtree)
28    */
29   Object getBounds();
30 }
31