Package javax.jdo.query.geospatial
Interface PointExpression<T>
- All Superinterfaces:
ComparableExpression<T>
,Expression<T>
,GeometryExpression<T>
Representation of a Point expression.
Note that this is not part of the JDO spec, but a vendor extension to allow JDOQLTyped handling for geometry types.
-
Method Summary
Methods inherited from interface javax.jdo.query.ComparableExpression
asc, desc, gt, gt, gteq, gteq, lt, lt, lteq, lteq, max, min
Methods inherited from interface javax.jdo.query.Expression
as, cast, count, countDistinct, eq, eq, instanceOf, ne, ne
Methods inherited from interface javax.jdo.query.geospatial.GeometryExpression
buffer, contains, convexHull, crosses, difference, disjoint, distance, equals, getArea, getBoundary, getCentroid, getDimension, getEnvelope, getGeometryN, getGeometryType, getLength, getNumGeometries, getNumPoints, getPointOnSurface, getSRID, intersection, intersects, isEmpty, isSimple, overlaps, relate, symDifference, toBinary, toText, touches, union, within
-
Method Details
-
getX
NumericExpression<Double> getX()Returns the x-coordinate of the Point as a Double.- Returns:
- The x coordinate
-
getY
NumericExpression<Double> getY()Returns the y-coordinate of the Point as a Double.- Returns:
- The y coordinate
-