Interface GeometryVisitor<P extends Position>

    • Method Detail

      • visit

        void visit​(Point<P> point)
        Visits a Point
        Parameters:
        point -
      • visit

        void visit​(LineString<P> lineString)
        Visits a LineString.
        Parameters:
        lineString -
      • visit

        void visit​(Polygon<P> polygon)
        Visits a Polygon.
        Parameters:
        polygon -
      • visit

        <G extends Geometry<P>> void visit​(AbstractGeometryCollection<P,​G> collection)
        Visits a GeometryCollection.

        The collection will pass the visitor to it constituent parts.

        Parameters:
        collection -