Uses of Class
org.gvsig.fmap.geom.operation.GeometryOperationException

Packages that use GeometryOperationException
org.gvsig.fmap.geom   
org.gvsig.fmap.geom.impl   
org.gvsig.fmap.geom.operation   
org.gvsig.fmap.geom.operation.area   
org.gvsig.fmap.geom.operation.distance   
org.gvsig.fmap.geom.operation.ensureOrientation   
org.gvsig.fmap.geom.operation.flip   
org.gvsig.fmap.geom.operation.fromjts   
org.gvsig.fmap.geom.operation.fromwkb   
org.gvsig.fmap.geom.operation.fromwkt   
org.gvsig.fmap.geom.operation.isCCW   
org.gvsig.fmap.geom.operation.perimeter   
org.gvsig.fmap.geom.operation.perpendicular   
org.gvsig.fmap.geom.operation.relationship   
org.gvsig.fmap.geom.operation.tojts   
org.gvsig.fmap.geom.operation.towkb   
org.gvsig.fmap.geom.operation.towkt   
org.gvsig.fmap.geom.operation.utils   
org.gvsig.fmap.geom.primitive.impl   
 

Uses of GeometryOperationException in org.gvsig.fmap.geom
 

Methods in org.gvsig.fmap.geom that throw GeometryOperationException
 double Geometry.area()
           
 Geometry Geometry.buffer(double distance)
          Computes a buffer area around this geometry having the given width This is a utility method to wrap the invocation to the operation Geometry.OPERATIONS.BUFFER.
 Point Geometry.centroid()
           
 Geometry[] Geometry.closestPoints(Geometry other)
           
 boolean Geometry.contains(Geometry geometry)
          Tests whether this geometry contains the specified geometry.
 byte[] Geometry.convertToWKB()
          Return a byte array with the equivalent in WKB format of the Geometry.
 String Geometry.convertToWKT()
          Return a string with the equivalent in WKT format of the Geometry.
 Geometry Geometry.convexHull()
           
 boolean Geometry.coveredBy(Geometry geometry)
           
 boolean Geometry.crosses(Geometry geometry)
           
 Geometry Geometry.difference(Geometry other)
           
 boolean Geometry.disjoint(Geometry geometry)
           
 double Geometry.distance(Geometry other)
          Returns the minimum distance between this Geometry and the specified geometry.
 Point Geometry.getInteriorPoint()
          This method returns a point which is inside the geometry.
 Geometry Geometry.intersection(Geometry other)
           
 boolean Geometry.intersects(Geometry geometry)
           
 Object GeometryManager.invokeOperation(int opCode, Geometry geom, GeometryOperationContext ctx)
           Invokes an operation given its code, the geometry and the operation context holding the parameters required for the operation.
 Object Geometry.invokeOperation(int index, GeometryOperationContext ctx)
          Invokes a geometry operation given its index and context.
 Object GeometryManager.invokeOperation(String geomOpName, Geometry geom, GeometryOperationContext ctx)
           Invokes an operation given its code, the geometry and the operation context holding the parameters required for the operation.
 Object GeometryManager.invokeOperation(String geomOpName, GeometryOperationContext ctx)
           Invokes an operation given its code, and the operation context holding the parameters required for the operation.
 Object Geometry.invokeOperation(String opName, GeometryOperationContext ctx)
          Invokes a geometry operation given its name and context.
 boolean Geometry.isWithinDistance(Geometry other, double distance)
           
 boolean Geometry.overlaps(Geometry geometry)
          Tests whether this geometry overlaps the specified geometry.
 double Geometry.perimeter()
           
 Geometry Geometry.snapTo(Geometry other, double snapTolerance)
           
 boolean Geometry.touches(Geometry geometry)
           
 Geometry Geometry.union(Geometry other)
           
 boolean Geometry.within(Geometry geometry)
           
 

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

Methods in org.gvsig.fmap.geom.impl that throw GeometryOperationException
 Object DefaultGeometryManager.invokeOperation(int opCode, Geometry geom, GeometryOperationContext ctx)
           
 Object DefaultGeometryManager.invokeOperation(String geomOpName, Geometry geom, GeometryOperationContext ctx)
           
 Object DefaultGeometryManager.invokeOperation(String geomOpName, GeometryOperationContext ctx)
           
 

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

Methods in org.gvsig.fmap.geom.operation that throw GeometryOperationException
abstract  Object GeometryOperation.invoke(Geometry geom, GeometryOperationContext ctx)
          Invokes this operation given the geometry and context
 

Uses of GeometryOperationException in org.gvsig.fmap.geom.operation.area
 

Methods in org.gvsig.fmap.geom.operation.area that throw GeometryOperationException
 Object Area.invoke(Geometry geom, GeometryOperationContext ctx)
           
 

Uses of GeometryOperationException in org.gvsig.fmap.geom.operation.distance
 

Methods in org.gvsig.fmap.geom.operation.distance that throw GeometryOperationException
 Object PointDistance.invoke(Geometry geom, GeometryOperationContext ctx)
           
 

Uses of GeometryOperationException in org.gvsig.fmap.geom.operation.ensureOrientation
 

Methods in org.gvsig.fmap.geom.operation.ensureOrientation that throw GeometryOperationException
 Object EnsureOrientation.invoke(Geometry geom, GeometryOperationContext ctx)
           
 

Uses of GeometryOperationException in org.gvsig.fmap.geom.operation.flip
 

Methods in org.gvsig.fmap.geom.operation.flip that throw GeometryOperationException
 Object Flip.invoke(Geometry geom, GeometryOperationContext ctx)
           
 

Uses of GeometryOperationException in org.gvsig.fmap.geom.operation.fromjts
 

Methods in org.gvsig.fmap.geom.operation.fromjts that throw GeometryOperationException
 Object FromJTS.invoke(Geometry geom, GeometryOperationContext ctx)
           
 

Uses of GeometryOperationException in org.gvsig.fmap.geom.operation.fromwkb
 

Methods in org.gvsig.fmap.geom.operation.fromwkb that throw GeometryOperationException
 Object FromWKB.invoke(Geometry geom, GeometryOperationContext ctx)
           
 

Uses of GeometryOperationException in org.gvsig.fmap.geom.operation.fromwkt
 

Methods in org.gvsig.fmap.geom.operation.fromwkt that throw GeometryOperationException
 Object FromWKT.invoke(Geometry geom, GeometryOperationContext ctx)
           
 

Uses of GeometryOperationException in org.gvsig.fmap.geom.operation.isCCW
 

Methods in org.gvsig.fmap.geom.operation.isCCW that throw GeometryOperationException
 Object IsCCW.invoke(Geometry geom, GeometryOperationContext ctx)
           
 

Uses of GeometryOperationException in org.gvsig.fmap.geom.operation.perimeter
 

Methods in org.gvsig.fmap.geom.operation.perimeter that throw GeometryOperationException
 Object Perimeter.invoke(Geometry geom, GeometryOperationContext ctx)
           
 

Uses of GeometryOperationException in org.gvsig.fmap.geom.operation.perpendicular
 

Methods in org.gvsig.fmap.geom.operation.perpendicular that throw GeometryOperationException
 Object UnitVector.invoke(Geometry geom, GeometryOperationContext ctx)
           
 Object PerpendicularPoint.invoke(Geometry geom, GeometryOperationContext ctx)
           
 Object Perpendicular.invoke(Geometry geom, GeometryOperationContext ctx)
           
 

Uses of GeometryOperationException in org.gvsig.fmap.geom.operation.relationship
 

Methods in org.gvsig.fmap.geom.operation.relationship that throw GeometryOperationException
 Object Within.invoke(Geometry geom, GeometryOperationContext ctx)
           
 Object Touches.invoke(Geometry geom, GeometryOperationContext ctx)
           
 Object Overlaps.invoke(Geometry geom, GeometryOperationContext ctx)
           
 Object Out.invoke(Geometry geom, GeometryOperationContext ctx)
           
 Object Intersects.invoke(Geometry geom, GeometryOperationContext ctx)
           
 Object Equals.invoke(Geometry geom, GeometryOperationContext ctx)
           
 Object Disjoint.invoke(Geometry geom, GeometryOperationContext ctx)
           
 Object Crosses.invoke(Geometry geom, GeometryOperationContext ctx)
           
 Object Contains.invoke(Geometry geom, GeometryOperationContext ctx)
           
 

Uses of GeometryOperationException in org.gvsig.fmap.geom.operation.tojts
 

Methods in org.gvsig.fmap.geom.operation.tojts that throw GeometryOperationException
 Object Surface2DToJTSLineString.invoke(Geometry geom, GeometryOperationContext ctx)
           
 Object Surface2DToJTS.invoke(Geometry geom, GeometryOperationContext ctx)
           
 Object MultiSurfaceToJTS.invoke(Geometry geom, GeometryOperationContext ctx)
           
 Object MultiPointToJTS.invoke(Geometry geom, GeometryOperationContext ctx)
           
 Object MultiCurveToJTS.invoke(Geometry geom, GeometryOperationContext ctx)
           
 Object Curve2DToJTS.invoke(Geometry geom, GeometryOperationContext ctx)
           
 Object BaseMultiPrimitiveToJTS.invoke(Geometry geom, GeometryOperationContext ctx)
           
 

Uses of GeometryOperationException in org.gvsig.fmap.geom.operation.towkb
 

Methods in org.gvsig.fmap.geom.operation.towkb that throw GeometryOperationException
 Object ToWKBNative.invoke(Geometry geom, GeometryOperationContext ctx)
           
 

Uses of GeometryOperationException in org.gvsig.fmap.geom.operation.towkt
 

Methods in org.gvsig.fmap.geom.operation.towkt that throw GeometryOperationException
 Object ToWKT.invoke(Geometry geom, GeometryOperationContext ctx)
           
 

Uses of GeometryOperationException in org.gvsig.fmap.geom.operation.utils
 

Methods in org.gvsig.fmap.geom.operation.utils that throw GeometryOperationException
 Object PointGetAngle.invoke(Geometry geom, GeometryOperationContext ctx)
           
 

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

Methods in org.gvsig.fmap.geom.primitive.impl that throw GeometryOperationException
 double AbstractPrimitive.area()
           
 Geometry AbstractPrimitive.buffer(double distance)
           
 Point AbstractPrimitive.centroid()
           
 Geometry[] AbstractPrimitive.closestPoints(Geometry other)
           
 boolean AbstractPrimitive.contains(Geometry geometry)
           
protected  boolean AbstractPrimitive.containsPoint(Geometry geom, double x, double y)
          Utility method
protected  boolean AbstractPrimitive.containsRectangle(Geometry geom, double x, double y, double w, double h)
           
 byte[] AbstractPrimitive.convertToWKB()
           
 String AbstractPrimitive.convertToWKT()
           
 Geometry AbstractPrimitive.convexHull()
           
 boolean AbstractPrimitive.coveredBy(Geometry geometry)
           
 boolean AbstractPrimitive.crosses(Geometry geometry)
           
 Geometry AbstractPrimitive.difference(Geometry other)
           
 boolean AbstractPrimitive.disjoint(Geometry geometry)
           
 double AbstractPrimitive.distance(Geometry geometry)
           
 Point AbstractPrimitive.getInteriorPoint()
           
 Geometry AbstractPrimitive.intersection(Geometry other)
           
 boolean AbstractPrimitive.intersects(Geometry geometry)
           
protected  boolean AbstractPrimitive.intersectsRectangle(Geometry geom, double x, double y, double w, double h)
           
 Object AbstractPrimitive.invokeOperation(int index, GeometryOperationContext ctx)
           
 Object AbstractPrimitive.invokeOperation(String oppName, GeometryOperationContext ctx)
           
 boolean AbstractPrimitive.isWithinDistance(Geometry other, double distance)
           
 boolean AbstractPrimitive.overlaps(Geometry geometry)
           
 double AbstractPrimitive.perimeter()
           
 Geometry AbstractPrimitive.snapTo(Geometry other, double snapTolerance)
           
 boolean AbstractPrimitive.touches(Geometry geometry)
           
 Geometry AbstractPrimitive.union(Geometry other)
           
 boolean AbstractPrimitive.within(Geometry geometry)
           
 



Copyright © 2004-2013 gvSIG. All Rights Reserved.