Uses of Interface
com.vividsolutions.jts.index.ItemVisitor

Packages that use ItemVisitor
com.vividsolutions.jts.index Provides classes for various kinds of spatial indexes. 
com.vividsolutions.jts.index.intervalrtree Contains classes to implement an R-tree index for one-dimensional intervals. 
com.vividsolutions.jts.index.quadtree Contains classes that implement a Quadtree spatial index 
com.vividsolutions.jts.index.strtree Contains 2-D and 1-D versions of the Sort-Tile-Recursive (STR) tree, a query-only R-tree. 
 

Uses of ItemVisitor in com.vividsolutions.jts.index
 

Classes in com.vividsolutions.jts.index that implement ItemVisitor
 class ArrayListVisitor
           
 

Methods in com.vividsolutions.jts.index with parameters of type ItemVisitor
 void SpatialIndex.query(Envelope searchEnv, ItemVisitor visitor)
          Queries the index for all items whose extents intersect the given search Envelope, and applies an ItemVisitor to them.
 

Uses of ItemVisitor in com.vividsolutions.jts.index.intervalrtree
 

Methods in com.vividsolutions.jts.index.intervalrtree with parameters of type ItemVisitor
 void SortedPackedIntervalRTree.query(double min, double max, ItemVisitor visitor)
          Search for intervals in the index which intersect the given closed interval and apply the visitor to them.
abstract  void IntervalRTreeNode.query(double queryMin, double queryMax, ItemVisitor visitor)
           
 void IntervalRTreeLeafNode.query(double queryMin, double queryMax, ItemVisitor visitor)
           
 void IntervalRTreeBranchNode.query(double queryMin, double queryMax, ItemVisitor visitor)
           
 

Uses of ItemVisitor in com.vividsolutions.jts.index.quadtree
 

Methods in com.vividsolutions.jts.index.quadtree with parameters of type ItemVisitor
 void Quadtree.query(Envelope searchEnv, ItemVisitor visitor)
          Queries the tree and visits items which may lie in the given search envelope.
 void NodeBase.visit(Envelope searchEnv, ItemVisitor visitor)
           
 

Uses of ItemVisitor in com.vividsolutions.jts.index.strtree
 

Methods in com.vividsolutions.jts.index.strtree with parameters of type ItemVisitor
 void STRtree.query(Envelope searchEnv, ItemVisitor visitor)
          Returns items whose bounds intersect the given envelope.
protected  void AbstractSTRtree.query(Object searchBounds, ItemVisitor visitor)
          Also builds the tree, if necessary.
 



Copyright © 2012. All Rights Reserved.