Uses of Interface
javax.jdo.query.StringExpression
Packages that use StringExpression
Package
Description
Package providing the Java Data Objects (JDO) primary API components.
Package providing expressions for building a typed JDOQL query.
Package providing expressions representing geospatial types in building a typed JDOQL query.
-
Uses of StringExpression in javax.jdo
Methods in javax.jdo that return StringExpressionModifier and TypeMethodDescriptionJDOQLTypedSubquery.selectUnique
(StringExpression expr) Accessor for the subquery (string) expression from the subquery when the subquery returns a single value.JDOQLTypedQuery.stringParameter
(String name) Method to return a string parameter for the query.Methods in javax.jdo with parameters of type StringExpressionModifier and TypeMethodDescriptionJDOQLTypedSubquery.selectUnique
(StringExpression expr) Accessor for the subquery (string) expression from the subquery when the subquery returns a single value. -
Uses of StringExpression in javax.jdo.query
Methods in javax.jdo.query that return StringExpressionModifier and TypeMethodDescriptionMethod to return an expression for this string added to the passed expression (String concatenation).StringExpression.add
(Expression expr) Method to return an expression for this expression added to the passed expression (String concatenation).StringExpression.substring
(int pos) Method to return an expression for the substring of this string expression.StringExpression.substring
(int startPos, int endPos) Method to return an expression for the substring of this string expression.StringExpression.substring
(NumericExpression<Integer> pos) Method to return an expression for the substring of this string expression.StringExpression.substring
(NumericExpression<Integer> startPos, NumericExpression<Integer> endPos) Method to return an expression for the substring of this string expression.StringExpression.toLowerCase()
Method to return a StringExpression representing this string expression in lower case.StringExpression.toUpperCase()
Method to return a StringExpression representing this string expression in upper case.StringExpression.trim()
Method returning a string expression with whitespace trimmed from start and end.Methods in javax.jdo.query with parameters of type StringExpressionModifier and TypeMethodDescriptionStringExpression.endsWith
(StringExpression expr) Method returning an expression for whether this string expression ends with the passed string expression.StringExpression.equalsIgnoreCase
(StringExpression expr) Method returning an expression for whether this string expression is equal to (ignoring case) the passed string expression.StringExpression.indexOf
(StringExpression expr) Method to return an expression for the position of the passed string in this string.StringExpression.indexOf
(StringExpression expr, int pos) Method to return an expression for the position of the passed string in this string after a position.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.StringExpression.matches
(StringExpression expr) Method to return an expression for whether this string expression matches the provided expression.StringExpression.startsWith
(StringExpression expr) Method returning an expression for whether this string expression starts with the passed string expression.StringExpression.startsWith
(StringExpression expr, int pos) Method returning an expression for whether this string expression starts with the passed string expression.StringExpression.startsWith
(StringExpression expr, NumericExpression<Integer> pos) Method returning an expression for whether this string expression starts with the passed string expression. -
Uses of StringExpression in javax.jdo.query.geospatial
Methods in javax.jdo.query.geospatial that return StringExpressionModifier and TypeMethodDescriptionGeometryExpression.getGeometryType()
Returns the name of the instantiable subtype of Geometry.GeometryExpression.toText()
Returns the well-known textual representation.Methods in javax.jdo.query.geospatial with parameters of type StringExpressionModifier and TypeMethodDescriptionGeospatialHelper.geometryCollFromText
(StringExpression wktExpr, NumericExpression<Integer> sridExpr) Construct a GeometryCollectionExpression given its text and SRID expressions.GeospatialHelper.geometryFromText
(StringExpression wktExpr, NumericExpression<Integer> sridExpr) Construct a GeometryExpression given its text and SRID expressions.GeospatialHelper.lineStringFromText
(StringExpression wktExpr, NumericExpression<Integer> sridExpr) Construct a LineStringExpression given its text and SRID expressions.GeospatialHelper.multiLineStringFromText
(StringExpression wktExpr, NumericExpression<Integer> sridExpr) Construct a MultiLineStringExpression given its text and SRID expressions.GeospatialHelper.multiPointFromText
(StringExpression wktExpr, NumericExpression<Integer> sridExpr) Construct a MultiPointExpression given its text and SRID expressions.GeospatialHelper.multiPolygonFromText
(StringExpression wktExpr, NumericExpression<Integer> sridExpr) Construct a MultiPolygonExpression given its text and SRID expressions.GeospatialHelper.pointFromText
(StringExpression wktExpr, NumericExpression<Integer> sridExpr) Construct a PointExpression given its text and SRID expressions.GeospatialHelper.polygonFromText
(StringExpression wktExpr, NumericExpression<Integer> sridExpr) Construct a PolygonExpression given its text and SRID expressions.GeometryExpression.relate
(GeometryExpression geom, StringExpression pattern) TRUE if the spatial relationship specified by the pattern matrix holds