Package | Description |
---|---|
javax.jdo | |
javax.jdo.query |
Package providing expressions for building a typed JDOQL query.
|
javax.jdo.query.geospatial |
Package providing expressions representing geospatial types in building a typed JDOQL query.
|
Modifier and Type | Method and Description |
---|---|
StringExpression |
JDOQLTypedSubquery.selectUnique(StringExpression expr)
Accessor for the subquery (string) expression from the subquery when the subquery returns a single value.
|
StringExpression |
JDOQLTypedQuery.stringParameter(String name)
Method to return a string parameter for the query.
|
Modifier and Type | Method and Description |
---|---|
StringExpression |
JDOQLTypedSubquery.selectUnique(StringExpression expr)
Accessor for the subquery (string) expression from the subquery when the subquery returns a single value.
|
Modifier and Type | Method and Description |
---|---|
StringExpression |
StringExpression.add(Expression expr)
Method to return an expression for this expression added to the passed expression (String concatenation).
|
StringExpression |
StringExpression.add(String str)
Method to return an expression for this string added to the passed expression (String concatenation).
|
StringExpression |
StringExpression.substring(int pos)
Method to return an expression for the substring of this string expression.
|
StringExpression |
StringExpression.substring(int startPos,
int endPos)
Method to return an expression for the substring of this string expression.
|
StringExpression |
StringExpression.substring(NumericExpression<Integer> pos)
Method to return an expression for the substring of this string expression.
|
StringExpression |
StringExpression.substring(NumericExpression<Integer> startPos,
NumericExpression<Integer> endPos)
Method to return an expression for the substring of this string expression.
|
StringExpression |
StringExpression.toLowerCase()
Method to return a StringExpression representing this string expression in lower case.
|
StringExpression |
StringExpression.toUpperCase()
Method to return a StringExpression representing this string expression in upper case.
|
StringExpression |
StringExpression.trim()
Method returning a string expression with whitespace trimmed from start and end.
|
Modifier and Type | Method and Description |
---|---|
BooleanExpression |
StringExpression.endsWith(StringExpression expr)
Method returning an expression for whether this string expression ends with the passed string expression.
|
BooleanExpression |
StringExpression.equalsIgnoreCase(StringExpression expr)
Method returning an expression for whether this string expression is equal to (ignoring case) the
passed string expression.
|
NumericExpression<Integer> |
StringExpression.indexOf(StringExpression expr)
Method to return an expression for the position of the passed string in this string.
|
NumericExpression<Integer> |
StringExpression.indexOf(StringExpression expr,
int pos)
Method to return an expression for the position of the passed string in this string after a position.
|
NumericExpression<Integer> |
StringExpression.indexOf(StringExpression expr,
NumericExpression<Integer> pos)
Method to return an expression for the position of the passed string in this string after a position.
|
BooleanExpression |
StringExpression.matches(StringExpression expr)
Method to return an expression for whether this string expression matches the provided expression.
|
BooleanExpression |
StringExpression.startsWith(StringExpression expr)
Method returning an expression for whether this string expression starts with the passed string expression.
|
BooleanExpression |
StringExpression.startsWith(StringExpression expr,
int pos)
Method returning an expression for whether this string expression starts with the passed string expression.
|
BooleanExpression |
StringExpression.startsWith(StringExpression expr,
NumericExpression<Integer> pos)
Method returning an expression for whether this string expression starts with the passed string expression.
|
Modifier and Type | Method and Description |
---|---|
StringExpression |
GeometryExpression.getGeometryType()
Returns the name of the instantiable subtype of Geometry.
|
StringExpression |
GeometryExpression.toText()
Returns the well-known textual representation.
|
Modifier and Type | Method and Description |
---|---|
GeometryCollectionExpression |
GeospatialHelper.geometryCollFromText(StringExpression wktExpr,
NumericExpression<Integer> sridExpr)
Construct a GeometryCollectionExpression given its text and SRID expressions.
|
GeometryExpression |
GeospatialHelper.geometryFromText(StringExpression wktExpr,
NumericExpression<Integer> sridExpr)
Construct a GeometryExpression given its text and SRID expressions.
|
LineStringExpression |
GeospatialHelper.lineStringFromText(StringExpression wktExpr,
NumericExpression<Integer> sridExpr)
Construct a LineStringExpression given its text and SRID expressions.
|
MultiLineStringExpression |
GeospatialHelper.multiLineStringFromText(StringExpression wktExpr,
NumericExpression<Integer> sridExpr)
Construct a MultiLineStringExpression given its text and SRID expressions.
|
MultiPointExpression |
GeospatialHelper.multiPointFromText(StringExpression wktExpr,
NumericExpression<Integer> sridExpr)
Construct a MultiPointExpression given its text and SRID expressions.
|
MultiPolygonExpression |
GeospatialHelper.multiPolygonFromText(StringExpression wktExpr,
NumericExpression<Integer> sridExpr)
Construct a MultiPolygonExpression given its text and SRID expressions.
|
PointExpression |
GeospatialHelper.pointFromText(StringExpression wktExpr,
NumericExpression<Integer> sridExpr)
Construct a PointExpression given its text and SRID expressions.
|
PolygonExpression |
GeospatialHelper.polygonFromText(StringExpression wktExpr,
NumericExpression<Integer> sridExpr)
Construct a PolygonExpression given its text and SRID expressions.
|
BooleanExpression |
GeometryExpression.relate(GeometryExpression geom,
StringExpression pattern)
TRUE if the spatial relationship specified by the pattern matrix holds
|
Copyright © 2020. All rights reserved.