Package org.geotools.shapefile
Class MultiPointHandler
- java.lang.Object
-
- org.geotools.shapefile.MultiPointHandler
-
- All Implemented Interfaces:
ShapeHandler
public class MultiPointHandler extends Object implements ShapeHandler
- Author:
- dblasby
-
-
Constructor Summary
Constructors Constructor Description MultiPointHandler()Creates new MultiPointHandlerMultiPointHandler(int type)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetLength(org.locationtech.jts.geom.Geometry geometry)Calcuates the record length of this object.intgetShapeType()Returns the shapefile shape type value for a pointorg.locationtech.jts.geom.Geometryread(EndianDataInputStream file, org.locationtech.jts.geom.GeometryFactory geometryFactory, int contentLength)voidwrite(org.locationtech.jts.geom.Geometry geometry, EndianDataOutputStream file)
-
-
-
Constructor Detail
-
MultiPointHandler
public MultiPointHandler()
Creates new MultiPointHandler
-
MultiPointHandler
public MultiPointHandler(int type) throws InvalidShapefileException- Throws:
InvalidShapefileException
-
-
Method Detail
-
read
public org.locationtech.jts.geom.Geometry read(EndianDataInputStream file, org.locationtech.jts.geom.GeometryFactory geometryFactory, int contentLength) throws IOException, InvalidShapefileException
- Specified by:
readin interfaceShapeHandler- Throws:
IOExceptionInvalidShapefileException
-
write
public void write(org.locationtech.jts.geom.Geometry geometry, EndianDataOutputStream file) throws IOException- Specified by:
writein interfaceShapeHandler- Throws:
IOException
-
getShapeType
public int getShapeType()
Returns the shapefile shape type value for a point- Specified by:
getShapeTypein interfaceShapeHandler- Returns:
- int Shapefile.POINT
-
getLength
public int getLength(org.locationtech.jts.geom.Geometry geometry)
Calcuates the record length of this object.- Specified by:
getLengthin interfaceShapeHandler- Returns:
- int The length of the record that this shapepoint will take up in a shapefile
-
-