Uses of Interface
org.gvsig.fmap.geom.type.GeometryType

Packages that use GeometryType
org.gvsig.fmap.geom   
org.gvsig.fmap.geom.aggregate.impl   
org.gvsig.fmap.geom.impl   
org.gvsig.fmap.geom.operation   
org.gvsig.fmap.geom.primitive   
org.gvsig.fmap.geom.primitive.impl   
org.gvsig.fmap.geom.type   
org.gvsig.fmap.geom.type.impl   
 

Uses of GeometryType in org.gvsig.fmap.geom
 

Methods in org.gvsig.fmap.geom that return GeometryType
 GeometryType Geometry.getGeometryType()
          Instance of the GeometryType associated to this geometry.
 GeometryType GeometryManager.getGeometryType(int type, int subType)
           Returns an instance of GeometryType given the Geometry type and the subtype.
 GeometryType GeometryManager.registerGeometryType(Class geomClass, int type, int subType)
           Registers a Geometry implementation class with a predefined geometry type and returns the associated GeometryType instance.
 GeometryType GeometryManager.registerGeometryType(Class geomClass, String name, int type, int subType)
           Registers a Geometry implementation class with a predefined geometry type and returns the associated GeometryType instance.
 GeometryType GeometryManager.registerGeometryType(Class geomClass, String name, int type, int subType, int superType)
           Registers a Geometry implementation class with a predefined geometry type and returns the associated GeometryType instance.
 GeometryType GeometryManager.registerGeometryType(Class geomClass, String name, int type, int subType, int[] superTypes)
           Registers a Geometry implementation class with a predefined geometry type and returns the associated GeometryType instance.
 GeometryType GeometryManager.registerGeometryType(Class geomClass, String name, int type, int subType, int[] superTypes, int[] superSubTypes)
           Registers a Geometry implementation class with a predefined geometry type and returns the associated GeometryType instance.
 GeometryType GeometryManager.registerGeometryType(Class geomClass, String name, int type, int subType, int superType, int superSubType)
           Registers a Geometry implementation class with a predefined geometry type and returns the associated GeometryType instance.
 

Methods in org.gvsig.fmap.geom with parameters of type GeometryType
 Geometry GeometryManager.create(GeometryType geomType)
           This method creates a Geometry with the type specified by this GeometryType.
 int GeometryManager.registerGeometryOperation(String geomOpName, GeometryOperation geomOp, GeometryType geomType)
           Registers a GeometryOperation associated to a GeometryType.
 void GeometryManager.registerGeometryType(GeometryType geometryType)
           Registers a GeometryType instance.
 

Uses of GeometryType in org.gvsig.fmap.geom.aggregate.impl
 

Constructors in org.gvsig.fmap.geom.aggregate.impl with parameters of type GeometryType
BaseMultiPrimitive(GeometryType geometryType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
BaseMultiPrimitive2D(GeometryType geomType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
MultiCurve2D(GeometryType geomType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
MultiCurve2DZ(GeometryType geomType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
MultiPoint2D(GeometryType geometryType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
MultiPoint2D(GeometryType geometryType, String id, org.cresques.cts.IProjection projection, Point2D[] points)
           
MultiPoint2DZ(GeometryType geometryType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
MultiSolid2DZ(GeometryType geomType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
MultiSurface2D(GeometryType geomType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
MultiSurface3D(GeometryType geomType)
           
MultiSurface3D(GeometryType geomType, String id, org.cresques.cts.IProjection projection)
           
 

Uses of GeometryType in org.gvsig.fmap.geom.impl
 

Methods in org.gvsig.fmap.geom.impl that return GeometryType
 GeometryType DefaultGeometryManager.getGeometryType(int type, int subType)
           
 GeometryType DefaultGeometryManager.registerGeometryType(Class geomClass, int type, int subType)
           
 GeometryType DefaultGeometryManager.registerGeometryType(Class geomClass, String name, int type, int subType)
           
 GeometryType DefaultGeometryManager.registerGeometryType(Class geomClass, String name, int type, int subType, int superType)
           
 GeometryType DefaultGeometryManager.registerGeometryType(Class geomClass, String name, int type, int subType, int[] superTypes)
           
 GeometryType DefaultGeometryManager.registerGeometryType(Class geomClass, String name, int type, int subType, int[] superTypes, int[] superSubTypes)
          Registers a Geometry implementation class with a predefined geometry type and returns the associated GeometryType instance.
 GeometryType DefaultGeometryManager.registerGeometryType(Class geomClass, String name, int type, int subType, int superType, int superSubType)
           
 

Methods in org.gvsig.fmap.geom.impl with parameters of type GeometryType
 Geometry DefaultGeometryManager.create(GeometryType geomType)
           
 int DefaultGeometryManager.registerGeometryOperation(String geomOpName, GeometryOperation geomOp, GeometryType geomType)
           
 void DefaultGeometryManager.registerGeometryType(GeometryType geometryType)
           
 

Uses of GeometryType in org.gvsig.fmap.geom.operation
 

Constructors in org.gvsig.fmap.geom.operation with parameters of type GeometryType
GeometryOperationNotSupportedException(int opCode, GeometryType geomType)
          Constructor with the operation code related to a geometry type
GeometryOperationNotSupportedException(int opCode, GeometryType geomType, Exception e)
          Main constructor
 

Uses of GeometryType in org.gvsig.fmap.geom.primitive
 

Subinterfaces of GeometryType in org.gvsig.fmap.geom.primitive
 interface PointGeometryType
          Geometry type for point geometries.
 

Uses of GeometryType in org.gvsig.fmap.geom.primitive.impl
 

Classes in org.gvsig.fmap.geom.primitive.impl that implement GeometryType
 class Point2DGeometryType
          Geometry type implementation for the creation of Point2D objects.
 class Point3DGeometryType
          Geometry type implementation for the creation of Point3D objects.
 

Fields in org.gvsig.fmap.geom.primitive.impl declared as GeometryType
protected  GeometryType AbstractPrimitive.geometryType
           
 

Methods in org.gvsig.fmap.geom.primitive.impl that return GeometryType
 GeometryType AbstractPrimitive.getGeometryType()
           
 

Constructors in org.gvsig.fmap.geom.primitive.impl with parameters of type GeometryType
AbstractPrimitive(GeometryType geometryType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
AbstractPrimitive(GeometryType geometryType, org.cresques.cts.IProjection projection)
           
AbstractPrimitive(GeometryType geometryType, String id, org.cresques.cts.IProjection projection)
           
Arc2D(GeometryType geometryType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
Arc2D(GeometryType geometryType, String id, org.cresques.cts.IProjection projection, GeneralPathX gpx, Point2D i, Point2D c, Point2D e)
          Constructor used in the Geometry.cloneGeometry() method
Arc2DZ(GeometryType geometryType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
Circle2D(GeometryType geometryType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
Circle2DZ(GeometryType geometryType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
Curve2D(GeometryType geomType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
Curve2D(GeometryType geomType, String id, org.cresques.cts.IProjection projection, GeneralPathX gpx)
          Constructor used in the Geometry.cloneGeometry() method.
Curve2DZ(GeometryType geometryType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
DefaultCurve(GeometryType geometryType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
DefaultCurve(GeometryType geometryType, String id, org.cresques.cts.IProjection projection, GeneralPathX gpx)
           
DefaultNullGeometry(GeometryType geometryType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
Ellipse2D(GeometryType geometryType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
Ellipse2DZ(GeometryType geometryType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
EllipticArc2D(GeometryType geometryType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
EllipticArc2DZ(GeometryType geometryType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
Geometry2D(GeometryType geometryType)
           
Geometry2DZ(GeometryType geometryType)
           
OrientableCurve2D(GeometryType geometryType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
OrientableCurve2D(GeometryType geometryType, String id, org.cresques.cts.IProjection projection, GeneralPathX gpx)
           
OrientablePrimitive2D(GeometryType geometryType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
OrientablePrimitive2D(GeometryType geometryType, String id, org.cresques.cts.IProjection projection, GeneralPathX gp)
           
OrientableSurface2D(GeometryType geometryType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
OrientableSurface2D(GeometryType geometryType, String id, org.cresques.cts.IProjection projection, GeneralPathX gpx)
           
Point2D(GeometryType geometryType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
Point2D(GeometryType geometryType, double x, double y)
           
Point2DZ(double x, double y, double z, GeometryType geometryType)
           
Point2DZ(GeometryType geomType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
Solid2DZ(GeometryType geometryType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
Spline2D(GeometryType geometryType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
Spline2DZ(GeometryType geometryType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
Surface2D(GeometryType geomType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
Surface2DZ(GeometryType geometryType)
          The constructor with the GeometryType like and argument is used by the GeometryType#create() to create the geometry
 

Uses of GeometryType in org.gvsig.fmap.geom.type
 

Classes in org.gvsig.fmap.geom.type that implement GeometryType
 class AbstractGeometryType
           
 

Methods in org.gvsig.fmap.geom.type with parameters of type GeometryType
 boolean GeometryType.isSubTypeOf(GeometryType geometryType)
          Check if a geometry subType inherits of other subType.
 boolean AbstractGeometryType.isSubTypeOf(GeometryType geometryType)
           
 boolean GeometryType.isTypeOf(GeometryType geometryType)
          Check if a geometry type inherits of other type.
 boolean AbstractGeometryType.isTypeOf(GeometryType geometryType)
           
 

Uses of GeometryType in org.gvsig.fmap.geom.type.impl
 

Classes in org.gvsig.fmap.geom.type.impl that implement GeometryType
 class DefaultGeometryType
           
 



Copyright © 2004-2013 gvSIG. All Rights Reserved.