Package org.geotools.shapefile
Class NullShapeHandler
- java.lang.Object
-
- org.geotools.shapefile.NullShapeHandler
-
- All Implemented Interfaces:
ShapeHandler
public class NullShapeHandler extends Object implements ShapeHandler
Null Shape handler for files containing only null shapes.
-
-
Constructor Summary
Constructors Constructor Description NullShapeHandler()
NullShapeHandler(int type)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.locationtech.jts.geom.Geometry
getEmptyGeometry(org.locationtech.jts.geom.GeometryFactory factory)
Return a empty geometry.int
getLength(org.locationtech.jts.geom.Geometry geometry)
Calcuates the record length of this object.int
getShapeType()
Returns the shapefile shape type value for a pointorg.locationtech.jts.geom.Geometry
read(EndianDataInputStream file, org.locationtech.jts.geom.GeometryFactory geometryFactory, int contentLength)
void
write(org.locationtech.jts.geom.Geometry geometry, EndianDataOutputStream file)
-
-
-
Constructor Detail
-
NullShapeHandler
public NullShapeHandler(int type) throws InvalidShapefileException
- Throws:
InvalidShapefileException
-
NullShapeHandler
public NullShapeHandler()
-
-
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:
read
in interfaceShapeHandler
- Throws:
IOException
InvalidShapefileException
-
write
public void write(org.locationtech.jts.geom.Geometry geometry, EndianDataOutputStream file) throws IOException
- Specified by:
write
in interfaceShapeHandler
- Throws:
IOException
-
getShapeType
public int getShapeType()
Returns the shapefile shape type value for a point- Specified by:
getShapeType
in interfaceShapeHandler
- Returns:
- int Shapefile.POINT
-
getLength
public int getLength(org.locationtech.jts.geom.Geometry geometry)
Calcuates the record length of this object.- Specified by:
getLength
in interfaceShapeHandler
- Returns:
- the length of a null shape (in 16 bits WORDS)
-
getEmptyGeometry
public org.locationtech.jts.geom.Geometry getEmptyGeometry(org.locationtech.jts.geom.GeometryFactory factory)
Return a empty geometry.- Specified by:
getEmptyGeometry
in interfaceShapeHandler
-
-