Uses of Class
com.spatial4j.core.io.WKTReader.State
-
Packages that use WKTReader.State Package Description com.spatial4j.core.io Reading & writing shapes in various forms.com.spatial4j.core.io.jts -
-
Uses of WKTReader.State in com.spatial4j.core.io
Methods in com.spatial4j.core.io that return WKTReader.State Modifier and Type Method Description protected WKTReader.StateWKTReader. newState(String wktString)(internal) Creates a new State with the given String.Methods in com.spatial4j.core.io with parameters of type WKTReader.State Modifier and Type Method Description protected ShapeWKTReader. parseBufferShape(WKTReader.State state)Parses the BUFFER operation applied to a parsed shape.protected ShapeWKTReader. parseEnvelopeShape(WKTReader.State state)Parses an ENVELOPE (aka Rectangle) shape from the raw string.protected ShapeWKTReader. parseGeometryCollectionShape(WKTReader.State state)Parses a GEOMETRYCOLLECTION shape from the raw string.protected ShapeWKTReader. parseLineStringShape(WKTReader.State state)Parses a LINESTRING shape from the raw string -- an ordered sequence of points.protected ShapeWKTReader. parseMultiLineStringShape(WKTReader.State state)Parses a MULTILINESTRING shape from the raw string -- a collection of line strings.protected ShapeWKTReader. parseMultiPointShape(WKTReader.State state)Parses a MULTIPOINT shape from the raw string -- a collection of points.protected ShapeWKTReader. parsePointShape(WKTReader.State state)Parses a POINT shape from the raw string.protected ShapeWKTReader. parseShapeByType(WKTReader.State state, String shapeType)(internal) Parses the remainder of a shape definition following the shape's name given asshapeTypealready consumed vianextWord().protected PointWKTReader. point(WKTReader.State state)Reads a raw Point (AKA Coordinate) from the current position.protected List<Point>WKTReader. pointList(WKTReader.State state)Reads a list of Points (AKA CoordinateSequence) from the current position.protected ShapeWKTReader. shape(WKTReader.State state)Reads a shape from the current position, starting with the name of the shape. -
Uses of WKTReader.State in com.spatial4j.core.io.jts
Methods in com.spatial4j.core.io.jts with parameters of type WKTReader.State Modifier and Type Method Description protected com.vividsolutions.jts.geom.CoordinateJtsWKTReader. coordinate(WKTReader.State state)Reads aCoordinatefrom the current position.protected com.vividsolutions.jts.geom.Coordinate[]JtsWKTReader. coordinateSequence(WKTReader.State state)Reads a JTS Coordinate sequence from the current position.protected List<com.vividsolutions.jts.geom.Coordinate[]>JtsWKTReader. coordinateSequenceList(WKTReader.State state)Reads a list of JTS Coordinate sequences from the current position.protected ShapeJtsWKTReader. parseLineStringShape(WKTReader.State state)BypassesJtsSpatialContext.makeLineString(java.util.List)so that we can more efficiently get the LineString without creating aList<Point>.protected ShapeJtsWKTReader. parseMulitPolygonShape(WKTReader.State state)Parses a MULTIPOLYGON shape from the raw string.protected ShapeJtsWKTReader. parsePolygonShape(WKTReader.State state)Parses a POLYGON shape from the raw string.protected ShapeJtsWKTReader. parseShapeByType(WKTReader.State state, String shapeType)protected com.vividsolutions.jts.geom.PolygonJtsWKTReader. polygon(WKTReader.State state)Reads a polygon, returning a JTS polygon.
-