Interface GeoComplexPolygon.EdgeIterator

All Known Subinterfaces:
GeoComplexPolygon.CountingEdgeIterator
All Known Implementing Classes:
GeoComplexPolygon.DualCrossingEdgeIterator, GeoComplexPolygon.FullLinearCrossingEdgeIterator, GeoComplexPolygon.IntersectorEdgeIterator, GeoComplexPolygon.IntersectorShapeIterator, GeoComplexPolygon.SectorLinearCrossingEdgeIterator
Enclosing class:
GeoComplexPolygon

private static interface GeoComplexPolygon.EdgeIterator
Iterator execution interface, for tree traversal. Pass an object implementing this interface into the traversal method of a tree, and each edge that matches will cause this object to be called.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
  • Method Details

    • matches

      boolean matches(GeoComplexPolygon.Edge edge)
      Parameters:
      edge - is the edge that matched.
      Returns:
      true if the iteration should continue, false otherwise.