Package | Description |
---|---|
com.mysema.query.spatial | |
com.mysema.query.spatial.path |
Modifier and Type | Class and Description |
---|---|
class |
CurveExpression<T extends org.geolatte.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 |
GeometryCollectionExpression<T extends org.geolatte.geom.GeometryCollection>
A GeometryCollection is a geometric object that is a collection of some number of geometric objects.
|
class |
GeometryOperation<T extends org.geolatte.geom.Geometry> |
class |
LinearRingExpression<T extends org.geolatte.geom.LineString>
A LinearRing is a LineString that is both closed and simple.
|
class |
LineExpression<T extends org.geolatte.geom.LineString>
A Line is a LineString with exactly 2 Points.
|
class |
LineStringExpression<T extends org.geolatte.geom.LineString>
A LineString is a Curve with linear interpolation between Points.
|
class |
LineStringOperation<T extends org.geolatte.geom.LineString> |
class |
MultiCurveExpression<T extends org.geolatte.geom.GeometryCollection>
A MultiCurve is a 1-dimensional GeometryCollection whose elements are Curves.
|
class |
MultiLineStringExpression<T extends org.geolatte.geom.MultiLineString>
A MultiLineString is a MultiCurve whose elements are LineStrings.
|
class |
MultiPointExpression<T extends org.geolatte.geom.MultiPoint>
A MultiPoint is a 0-dimensional GeometryCollection.
|
class |
MultiPolygonExpression<T extends org.geolatte.geom.MultiPolygon>
A MultiPolygon is a MultiSurface whose elements are Polygons.
|
class |
MultiSurfaceExpression<T extends org.geolatte.geom.GeometryCollection>
A MultiSurface is a 2-dimensional GeometryCollection whose elements are Surfaces, all using coordinates from
the same coordinate reference system.
|
class |
PointExpression<T extends org.geolatte.geom.Point>
A Point is a 0-dimensional geometric object and represents a single location in coordinate space.
|
class |
PointOperation<T extends org.geolatte.geom.Point> |
class |
PolygonExpression<T extends org.geolatte.geom.Polygon>
A Polygon is a planar Surface defined by 1 exterior boundary and 0 or more interior boundaries.
|
class |
PolygonOperation<T extends org.geolatte.geom.Polygon> |
class |
PolyhedralSurfaceExpression<T extends org.geolatte.geom.PolyHedralSurface>
A PolyhedralSurface is a contiguous collection of polygons, which share common boundary segments.
|
class |
SurfaceExpression<T extends org.geolatte.geom.Geometry>
A Surface is a 2-dimensional geometric object.
|
Modifier and Type | Method and Description |
---|---|
GeometryExpression<org.geolatte.geom.Geometry> |
GeometryExpression.boundary()
Returns the closure of the combinatorial boundary of this geometric object
|
GeometryExpression<org.geolatte.geom.Geometry> |
GeometryExpression.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 GeometryExpression<?> |
GeometryExpressions.collect(Expression<? extends org.geolatte.geom.Geometry> expr1,
Expression<? extends org.geolatte.geom.Geometry> expr2)
Return a specified ST_Geometry value from a collection of other geometries.
|
static GeometryExpression<?> |
GeometryExpressions.collect(Expression<? extends org.geolatte.geom.GeometryCollection> collection)
Return a specified ST_Geometry value from a collection of other geometries.
|
GeometryExpression<org.geolatte.geom.Geometry> |
GeometryExpression.convexHull()
Returns a geometric object that represents the convex hull of this geometric object.
|
GeometryExpression<org.geolatte.geom.Geometry> |
GeometryExpression.difference(Expression<? extends org.geolatte.geom.Geometry> geometry)
Returns a geometric object that represents the Point
set difference of this geometric object with anotherGeometry.
|
GeometryExpression<org.geolatte.geom.Geometry> |
GeometryExpression.difference(org.geolatte.geom.Geometry geometry)
Returns a geometric object that represents the Point
set difference of this geometric object with anotherGeometry.
|
GeometryExpression<org.geolatte.geom.Geometry> |
GeometryExpression.envelope()
The minimum bounding box for this Geometry, returned as a Geometry.
|
static GeometryExpression<?> |
GeometryExpressions.extent(Expression<? extends org.geolatte.geom.GeometryCollection> collection)
Returns the bounding box that bounds rows of geometries.
|
static GeometryExpression<?> |
GeometryExpressions.fromText(Expression<String> text)
Return a specified ST_Geometry value from Well-Known Text representation (WKT).
|
static GeometryExpression<?> |
GeometryExpressions.fromText(String text)
Return a specified ST_Geometry value from Well-Known Text representation (WKT).
|
GeometryExpression<org.geolatte.geom.Geometry> |
GeometryCollectionExpression.geometryN(Integer n)
Returns the Nth geometry in this GeometryCollection.
|
GeometryExpression<org.geolatte.geom.Geometry> |
GeometryExpression.intersection(Expression<? extends org.geolatte.geom.Geometry> geometry)
Returns a geometric object that represents the Point set intersection of this geometric
object with anotherGeometry.
|
GeometryExpression<org.geolatte.geom.Geometry> |
GeometryExpression.intersection(org.geolatte.geom.Geometry geometry)
Returns a geometric object that represents the Point set intersection of this geometric
object with anotherGeometry.
|
static <T extends org.geolatte.geom.Geometry> |
GeometryExpressions.setSRID(Expression<T> expr,
int srid)
Sets the SRID on a geometry to a particular integer value.
|
GeometryExpression<org.geolatte.geom.Geometry> |
GeometryExpression.symDifference(Expression<? extends org.geolatte.geom.Geometry> geometry)
Returns a geometric object that represents the
Point set symmetric difference of this geometric object with anotherGeometry.
|
GeometryExpression<org.geolatte.geom.Geometry> |
GeometryExpression.symDifference(org.geolatte.geom.Geometry geometry)
Returns a geometric object that represents the
Point set symmetric difference of this geometric object with anotherGeometry.
|
GeometryExpression<org.geolatte.geom.Geometry> |
GeometryExpression.transform(int srid) |
static <T extends org.geolatte.geom.Geometry> |
GeometryExpressions.translate(Expression<T> expr,
float deltax,
float deltay)
Translates the geometry to a new location using the numeric parameters as offsets.
|
static <T extends org.geolatte.geom.Geometry> |
GeometryExpressions.translate(Expression<T> expr,
float deltax,
float deltay,
float deltaz)
Translates the geometry to a new location using the numeric parameters as offsets.
|
GeometryExpression<org.geolatte.geom.Geometry> |
GeometryExpression.union(Expression<? extends org.geolatte.geom.Geometry> geometry)
Returns a geometric object that represents the Point set
union of this geometric object with anotherGeometry.
|
GeometryExpression<org.geolatte.geom.Geometry> |
GeometryExpression.union(org.geolatte.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 |
GeometryExpressions.asEWKT(GeometryExpression<?> expr)
Return a specified ST_Geometry value from Extended Well-Known Text representation (EWKT).
|
static NumberExpression<Double> |
GeometryExpressions.xmax(GeometryExpression<?> expr)
Returns X maxima of a bounding box 2d or 3d or a geometry.
|
static NumberExpression<Double> |
GeometryExpressions.xmin(GeometryExpression<?> expr)
Returns X minima of a bounding box 2d or 3d or a geometry.
|
static NumberExpression<Double> |
GeometryExpressions.ymax(GeometryExpression<?> expr)
Returns Y maxima of a bounding box 2d or 3d or a geometry.
|
static NumberExpression<Double> |
GeometryExpressions.ymin(GeometryExpression<?> expr)
Returns Y minima of a bounding box 2d or 3d or a geometry.
|
Modifier and Type | Class and Description |
---|---|
class |
GeometryCollectionPath<T extends org.geolatte.geom.GeometryCollection> |
class |
GeometryPath<T extends org.geolatte.geom.Geometry> |
class |
LinearRingPath<T extends org.geolatte.geom.LinearRing> |
class |
LineStringPath<T extends org.geolatte.geom.LineString> |
class |
MultiLineStringPath<T extends org.geolatte.geom.MultiLineString> |
class |
MultiPointPath<T extends org.geolatte.geom.MultiPoint> |
class |
MultiPolygonPath<T extends org.geolatte.geom.MultiPolygon> |
class |
PointPath<T extends org.geolatte.geom.Point> |
class |
PolygonPath<T extends org.geolatte.geom.Polygon> |
class |
PolyhedralSurfacePath<T extends org.geolatte.geom.PolyHedralSurface> |
Copyright © 2007–2015 Mysema Ltd. All rights reserved.