Package org.geotools.data.vpf.readers
Class VPFGeometryFactory
- Object
-
- VPFGeometryFactory
-
- Direct Known Subclasses:
AreaGeometryFactory,ConnectedNodeGeometryFactory,EntityNodeGeometryFactory,LineGeometryFactory,TextGeometryFactory
public abstract class VPFGeometryFactory extends Object
DOCUMENT ME!- Author:
- Jeff Yutzler
-
-
Constructor Summary
Constructors Constructor Description VPFGeometryFactory()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract GeometrybuildGeometry(VPFFeatureClass featureClass, SimpleFeature values)abstract voidcreateGeometry(VPFFeatureType featureType, SimpleFeature values)Constructs a geometry for the appropriate feature type based on values currently on the object, retrieving values as needed from the various VPFFile objects
-
-
-
Method Detail
-
createGeometry
public abstract void createGeometry(VPFFeatureType featureType, SimpleFeature values) throws SQLException, IOException, IllegalAttributeException
Constructs a geometry for the appropriate feature type based on values currently on the object, retrieving values as needed from the various VPFFile objects- Parameters:
featureType- the VPFFeatureType to usevalues- the current feature- Throws:
SQLExceptionIOExceptionIllegalAttributeException
-
buildGeometry
public abstract Geometry buildGeometry(VPFFeatureClass featureClass, SimpleFeature values) throws SQLException, IOException, IllegalAttributeException
-
-