Uses of Interface
goldman.collection.spatial.XYComparator

Packages that use XYComparator
goldman.collection.spatial A spatial collection is an untagged algorithmically positioned collection that organizes its elements by their location in a multidimensional space. 
goldman.collection.tagged.spatial A tagged spatial collection is the tagged variation of a spatial collection. 
 

Uses of XYComparator in goldman.collection.spatial
 

Classes in goldman.collection.spatial that implement XYComparator
 class DefaultXYComparator<E extends XYPoint>
          The DefaultXYComparator class provides an implementation of the XYComparator interface that simply uses the x and y coordinates.
 

Constructors in goldman.collection.spatial with parameters of type XYComparator
QuadTree(XYComparator<? super E> comp)
           
 

Uses of XYComparator in goldman.collection.tagged.spatial
 

Classes in goldman.collection.tagged.spatial that implement XYComparator
 class TaggedElementXYComparator<T extends XYPoint>
          The TaggedElementXYComparator used by the quad tree is defined over tags that are two-dimensional points.
 

Constructors in goldman.collection.tagged.spatial with parameters of type XYComparator
TaggedElementXYComparator(XYComparator<? super T> comp)
           
TaggedQuadTree(XYComparator<? super T> comp)