Package | Description |
---|---|
com.mysema.query.spatial.jts | |
com.mysema.query.spatial.jts.path |
Modifier and Type | Class and Description |
---|---|
class |
JTSCurveExpression<T extends com.vividsolutions.jts.geom.Geometry>
A Curve is a 1-dimensional geometric object usually stored as a sequence of Points, with the subtype of Curve
specifying the form of the interpolation between Points.
|
class |
JTSGeometryCollectionExpression<T extends com.vividsolutions.jts.geom.GeometryCollection>
A GeometryCollection is a geometric object that is a collection of some number of geometric objects.
|
class |
JTSGeometryOperation<T extends com.vividsolutions.jts.geom.Geometry> |
class |
JTSLinearRingExpression<T extends com.vividsolutions.jts.geom.LineString>
A LinearRing is a LineString that is both closed and simple.
|
class |
JTSLineExpression<T extends com.vividsolutions.jts.geom.LineString>
A Line is a LineString with exactly 2 Points.
|
class |
JTSLineStringExpression<T extends com.vividsolutions.jts.geom.LineString>
A LineString is a Curve with linear interpolation between Points.
|
class |
JTSLineStringOperation<T extends com.vividsolutions.jts.geom.LineString> |
class |
JTSMultiCurveExpression<T extends com.vividsolutions.jts.geom.GeometryCollection>
A MultiCurve is a 1-dimensional GeometryCollection whose elements are Curves.
|
class |
JTSMultiLineStringExpression<T extends com.vividsolutions.jts.geom.MultiLineString>
A MultiLineString is a MultiCurve whose elements are LineStrings.
|
class |
JTSMultiPointExpression<T extends com.vividsolutions.jts.geom.MultiPoint>
A MultiPoint is a 0-dimensional GeometryCollection.
|
class |
JTSMultiPolygonExpression<T extends com.vividsolutions.jts.geom.MultiPolygon>
A MultiPolygon is a MultiSurface whose elements are Polygons.
|
class |
JTSMultiSurfaceExpression<T extends com.vividsolutions.jts.geom.GeometryCollection>
A MultiSurface is a 2-dimensional GeometryCollection whose elements are Surfaces, all using coordinates from
the same coordinate reference system.
|
class |
JTSPointExpression<T extends com.vividsolutions.jts.geom.Point>
A Point is a 0-dimensional geometric object and represents a single location in coordinate space.
|
class |
JTSPointOperation<T extends com.vividsolutions.jts.geom.Point> |
class |
JTSPolygonExpression<T extends com.vividsolutions.jts.geom.Polygon>
A Polygon is a planar Surface defined by 1 exterior boundary and 0 or more interior boundaries.
|
class |
JTSPolygonOperation<T extends com.vividsolutions.jts.geom.Polygon> |
class |
JTSSurfaceExpression<T extends com.vividsolutions.jts.geom.Geometry>
A Surface is a 2-dimensional geometric object.
|
Modifier and Type | Method and Description |
---|---|
JTSGeometryExpression<com.vividsolutions.jts.geom.Geometry> |
JTSGeometryExpression.boundary()
Returns the closure of the combinatorial boundary of this geometric object
|
JTSGeometryExpression<com.vividsolutions.jts.geom.Geometry> |
JTSGeometryExpression.buffer(double distance)
Returns a geometric object that represents all Points whose distance from this geometric
object is less than or equal to distance.
|
static JTSGeometryExpression<?> |
JTSGeometryExpressions.collect(Expression<? extends com.vividsolutions.jts.geom.Geometry> expr1,
Expression<? extends com.vividsolutions.jts.geom.Geometry> expr2)
Return a specified ST_Geometry value from a collection of other geometries.
|
static JTSGeometryExpression<?> |
JTSGeometryExpressions.collect(Expression<? extends com.vividsolutions.jts.geom.GeometryCollection> collection)
Return a specified ST_Geometry value from a collection of other geometries.
|
JTSGeometryExpression<com.vividsolutions.jts.geom.Geometry> |
JTSGeometryExpression.convexHull()
Returns a geometric object that represents the convex hull of this geometric object.
|
JTSGeometryExpression<com.vividsolutions.jts.geom.Geometry> |
JTSGeometryExpression.difference(Expression<? extends com.vividsolutions.jts.geom.Geometry> geometry)
Returns a geometric object that represents the Point
set difference of this geometric object with anotherGeometry.
|
JTSGeometryExpression<com.vividsolutions.jts.geom.Geometry> |
JTSGeometryExpression.difference(com.vividsolutions.jts.geom.Geometry geometry)
Returns a geometric object that represents the Point
set difference of this geometric object with anotherGeometry.
|
JTSGeometryExpression<com.vividsolutions.jts.geom.Geometry> |
JTSGeometryExpression.envelope()
The minimum bounding box for this Geometry, returned as a Geometry.
|
static JTSGeometryExpression<?> |
JTSGeometryExpressions.extent(Expression<? extends com.vividsolutions.jts.geom.GeometryCollection> collection)
Returns the bounding box that bounds rows of geometries.
|
static JTSGeometryExpression<?> |
JTSGeometryExpressions.fromText(Expression<String> text)
Return a specified ST_Geometry value from Well-Known Text representation (WKT).
|
static JTSGeometryExpression<?> |
JTSGeometryExpressions.fromText(String text)
Return a specified ST_Geometry value from Well-Known Text representation (WKT).
|
JTSGeometryExpression<com.vividsolutions.jts.geom.Geometry> |
JTSGeometryCollectionExpression.geometryN(Integer n)
Returns the Nth geometry in this GeometryCollection.
|
JTSGeometryExpression<com.vividsolutions.jts.geom.Geometry> |
JTSGeometryExpression.intersection(Expression<? extends com.vividsolutions.jts.geom.Geometry> geometry)
Returns a geometric object that represents the Point set intersection of this geometric
object with anotherGeometry.
|
JTSGeometryExpression<com.vividsolutions.jts.geom.Geometry> |
JTSGeometryExpression.intersection(com.vividsolutions.jts.geom.Geometry geometry)
Returns a geometric object that represents the Point set intersection of this geometric
object with anotherGeometry.
|
static <T extends com.vividsolutions.jts.geom.Geometry> |
JTSGeometryExpressions.setSRID(Expression<T> expr,
int srid)
Sets the SRID on a geometry to a particular integer value.
|
JTSGeometryExpression<com.vividsolutions.jts.geom.Geometry> |
JTSGeometryExpression.symDifference(Expression<? extends com.vividsolutions.jts.geom.Geometry> geometry)
Returns a geometric object that represents the
Point set symmetric difference of this geometric object with anotherGeometry.
|
JTSGeometryExpression<com.vividsolutions.jts.geom.Geometry> |
JTSGeometryExpression.symDifference(com.vividsolutions.jts.geom.Geometry geometry)
Returns a geometric object that represents the
Point set symmetric difference of this geometric object with anotherGeometry.
|
JTSGeometryExpression<com.vividsolutions.jts.geom.Geometry> |
JTSGeometryExpression.transform(int srid) |
static <T extends com.vividsolutions.jts.geom.Geometry> |
JTSGeometryExpressions.translate(Expression<T> expr,
float deltax,
float deltay)
Translates the geometry to a new location using the numeric parameters as offsets.
|
static <T extends com.vividsolutions.jts.geom.Geometry> |
JTSGeometryExpressions.translate(Expression<T> expr,
float deltax,
float deltay,
float deltaz)
Translates the geometry to a new location using the numeric parameters as offsets.
|
JTSGeometryExpression<com.vividsolutions.jts.geom.Geometry> |
JTSGeometryExpression.union(Expression<? extends com.vividsolutions.jts.geom.Geometry> geometry)
Returns a geometric object that represents the Point set
union of this geometric object with anotherGeometry.
|
JTSGeometryExpression<com.vividsolutions.jts.geom.Geometry> |
JTSGeometryExpression.union(com.vividsolutions.jts.geom.Geometry geometry)
Returns a geometric object that represents the Point set
union of this geometric object with anotherGeometry.
|
Modifier and Type | Method and Description |
---|---|
static StringExpression |
JTSGeometryExpressions.asEWKT(JTSGeometryExpression<?> expr)
Return a specified ST_Geometry value from Extended Well-Known Text representation (EWKT).
|
static NumberExpression<Double> |
JTSGeometryExpressions.xmax(JTSGeometryExpression<?> expr)
Returns X maxima of a bounding box 2d or 3d or a geometry.
|
static NumberExpression<Double> |
JTSGeometryExpressions.xmin(JTSGeometryExpression<?> expr)
Returns X minima of a bounding box 2d or 3d or a geometry.
|
static NumberExpression<Double> |
JTSGeometryExpressions.ymax(JTSGeometryExpression<?> expr)
Returns Y maxima of a bounding box 2d or 3d or a geometry.
|
static NumberExpression<Double> |
JTSGeometryExpressions.ymin(JTSGeometryExpression<?> expr)
Returns Y minima of a bounding box 2d or 3d or a geometry.
|
Modifier and Type | Class and Description |
---|---|
class |
JTSGeometryCollectionPath<T extends com.vividsolutions.jts.geom.GeometryCollection> |
class |
JTSGeometryPath<T extends com.vividsolutions.jts.geom.Geometry> |
class |
JTSLinearRingPath<T extends com.vividsolutions.jts.geom.LinearRing> |
class |
JTSLineStringPath<T extends com.vividsolutions.jts.geom.LineString> |
class |
JTSMultiLineStringPath<T extends com.vividsolutions.jts.geom.MultiLineString> |
class |
JTSMultiPointPath<T extends com.vividsolutions.jts.geom.MultiPoint> |
class |
JTSMultiPolygonPath<T extends com.vividsolutions.jts.geom.MultiPolygon> |
class |
JTSPointPath<T extends com.vividsolutions.jts.geom.Point> |
class |
JTSPolygonPath<T extends com.vividsolutions.jts.geom.Polygon> |
Copyright © 2007–2015 Mysema Ltd. All rights reserved.